From 7cde9aeb5dccce578c1eed13cf1ed2c61e446800 Mon Sep 17 00:00:00 2001 From: dacctal Date: Sun, 21 Jun 2026 01:33:58 +0000 Subject: huge code cleanup --- bldit.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'bldit.lua') diff --git a/bldit.lua b/bldit.lua index d724707..9967448 100644 --- a/bldit.lua +++ b/bldit.lua @@ -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, }, } -- cgit v1.2.3