diff options
Diffstat (limited to 'bldit.lua')
| -rw-r--r-- | bldit.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -7,6 +7,11 @@ global_dependencies = { version = "v2.1", target = "default", }, + git = { + url = "https://github.com/git/git", + version = "HEAD", + target = "default", + }, } targets = { @@ -17,6 +22,9 @@ targets = { install = function() os.execute("make install") end, + uninstall = function() + os.execute("make uninstall") + end, }, quiet = { build = function() @@ -25,5 +33,8 @@ targets = { install = function() local output = io.popen("make install"):read("*a") end, + uninstall = function() + local output = io.popen("make uninstall"):read("*a") + end, }, } |
