summaryrefslogtreecommitdiffstats
path: root/testing/resources/lua_repo
diff options
context:
space:
mode:
Diffstat (limited to 'testing/resources/lua_repo')
-rw-r--r--testing/resources/lua_repo/.pre-commit-hooks.yaml4
-rwxr-xr-xtesting/resources/lua_repo/bin/hello-world-lua3
-rw-r--r--testing/resources/lua_repo/hello-dev-1.rockspec15
3 files changed, 0 insertions, 22 deletions
diff --git a/testing/resources/lua_repo/.pre-commit-hooks.yaml b/testing/resources/lua_repo/.pre-commit-hooks.yaml
deleted file mode 100644
index 767ef97..0000000
--- a/testing/resources/lua_repo/.pre-commit-hooks.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-- id: hello-world-lua
- name: hello world lua
- entry: hello-world-lua
- language: lua
diff --git a/testing/resources/lua_repo/bin/hello-world-lua b/testing/resources/lua_repo/bin/hello-world-lua
deleted file mode 100755
index 2a0e002..0000000
--- a/testing/resources/lua_repo/bin/hello-world-lua
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/usr/bin/env lua
-
-print('hello world')
diff --git a/testing/resources/lua_repo/hello-dev-1.rockspec b/testing/resources/lua_repo/hello-dev-1.rockspec
deleted file mode 100644
index 82486e0..0000000
--- a/testing/resources/lua_repo/hello-dev-1.rockspec
+++ /dev/null
@@ -1,15 +0,0 @@
-package = "hello"
-version = "dev-1"
-
-source = {
- url = "git+ssh://git@github.com/pre-commit/pre-commit.git"
-}
-description = {}
-dependencies = {}
-build = {
- type = "builtin",
- modules = {},
- install = {
- bin = {"bin/hello-world-lua"}
- },
-}