mirror of
https://github.com/minetest-mods/stained_glass.git
synced 2024-11-16 15:00:20 +01:00
17 lines
203 B
Bash
17 lines
203 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm $0
|
||
|
|
||
|
lua "init.lua"
|
||
|
|
||
|
echo "
|
||
|
|
||
|
------------------
|
||
|
(program exited with code: $?)"
|
||
|
|
||
|
|
||
|
echo "Press return to continue"
|
||
|
#to be more compatible with shells like dash
|
||
|
dummy_var=""
|
||
|
read dummy_var
|