aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2024-07-27 09:26:54 -0400
committerSquibid <me@zacharyscheiman.com>2024-07-27 09:26:54 -0400
commit16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe (patch)
tree6edc384d7e72662dc1e58f0722353ce841f891cc /bootstrap.lua
parent878f0faaf7f472b96ab5a7f0e4db266111b2d3ce (diff)
downloadeat-it-3.0.tar.gz
eat-it-3.0.tar.bz2
eat-it-3.0.zip
complete refactor see README for more infov3.0
Diffstat (limited to '')
-rw-r--r--bootstrap.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/bootstrap.lua b/bootstrap.lua
deleted file mode 100644
index 89b62fb..0000000
--- a/bootstrap.lua
+++ /dev/null
@@ -1,8 +0,0 @@
-os.execute('git clone https://git.squi.bid/eat-it /tmp/eatit-tmp')
-local a = io.open('/tmp/eatit-tmp/eatit.lua', 'r')
-local b = io.open(mp.command_native({'expand-path', '~~/scripts/eatit.lua'}), 'w')
-b:write(a:read('*a'))
-b:close()
-a:close()
-dofile(mp.command_native({'expand-path', '~~/scripts/eatit.lua'}))
-os.execute('rm -rf /tmp/eatit-tmp')