diff options
author | Squibid <me@zacharyscheiman.com> | 2024-07-27 09:26:54 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-07-27 09:26:54 -0400 |
commit | 16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe (patch) | |
tree | 6edc384d7e72662dc1e58f0722353ce841f891cc /bootstrap.lua | |
parent | 878f0faaf7f472b96ab5a7f0e4db266111b2d3ce (diff) | |
download | eat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.tar.gz eat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.tar.bz2 eat-it-16f32bdcdd10c3dc95519b5f0ab4d6818b3a3bfe.zip |
complete refactor see README for more infov3.0
Diffstat (limited to 'bootstrap.lua')
-rw-r--r-- | bootstrap.lua | 8 |
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') |