mirror of
https://github.com/0x5eal/terracotta.git
synced 2024-12-12 12:50:35 +00:00
chore: bump tooling + lune v0.8.0 compat
This commit is contained in:
parent
659329a31e
commit
91e3457b49
3 changed files with 15 additions and 2 deletions
|
@ -94,7 +94,7 @@ local loader = task.spawn(function()
|
||||||
end)
|
end)
|
||||||
|
|
||||||
task.spawn(function()
|
task.spawn(function()
|
||||||
local child = spawn("lune", {
|
local child = spawn("./lunew", {
|
||||||
"wax",
|
"wax",
|
||||||
"bundle",
|
"bundle",
|
||||||
"input=default.project.json",
|
"input=default.project.json",
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
|
|
||||||
# To add a new tool, add an entry to this table.
|
# To add a new tool, add an entry to this table.
|
||||||
[tools]
|
[tools]
|
||||||
lune = "filiptibell/lune@0.7.8"
|
lune = "lune-org/lune@0.8.0"
|
||||||
darklua = "seaofvoices/darklua@0.10.2"
|
darklua = "seaofvoices/darklua@0.10.2"
|
||||||
rojo = "rojo-rbx/rojo@7.3.0"
|
rojo = "rojo-rbx/rojo@7.3.0"
|
||||||
|
|
13
lunew
Executable file
13
lunew
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
lune=$(which lune)
|
||||||
|
|
||||||
|
if (( $(lune --version | cut -d ' ' -f 2 | cut -d '.' -f 2) >= 8 )); then
|
||||||
|
if compgen -G "$1*" > /dev/null || compgen -G ".lune/$1*" > /dev/null; then
|
||||||
|
lune run "$@"
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
lune "$@"
|
||||||
|
exit $?
|
Loading…
Reference in a new issue