Skip to content

Commit

Permalink
Fix rockspec, install bin/luacc.lua into bin directory
Browse files Browse the repository at this point in the history
  • Loading branch information
jirutka authored and mihacooper committed Mar 21, 2017
1 parent b373f51 commit 14f45cb
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package = "LuaCC"
version = "0.9-4"
version = "0.9-5"
source = {
url = "git://github.com/mihacooper/luacc",
tag = version
Expand All @@ -17,7 +17,10 @@ dependencies = {
}
build = {
type = "builtin",
modules = {
luacc = "bin/luacc.lua",
modules = {},
install = {
bin = {
luacc = "bin/luacc.lua",
},
},
}

0 comments on commit 14f45cb

Please sign in to comment.