Rename corescripts from .lua to .luau
This commit is contained in:
parent
b56129fc7b
commit
3c7499eb2e
|
|
@ -1,3 +1,3 @@
|
||||||
# Corescripts
|
# Corescripts
|
||||||
|
|
||||||
After installing Aftman and running `aftman install`, run `./compile.sh` to compile the corescripts from ./lua/\*.lua to ./processed/\*.lua.
|
After installing Aftman and running `aftman install`, run `./compile.sh` to compile the corescripts from ./luau/\*.luau to ./processed/\*.lua.
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
echo "Processing corescripts..."
|
echo "Processing corescripts..."
|
||||||
for file in lua/[0-9]*.lua; do
|
for file in luau/[0-9]*.luau; do
|
||||||
darklua process -c dense.json5 $file processed/$(basename "$file")
|
darklua process -c dense.json5 $file processed/$(basename "${file::-1}")
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Processing other corescripts..."
|
echo "Processing other corescripts..."
|
||||||
for file in lua/[a-z]*.lua; do
|
for file in luau/[a-z]*.luau; do
|
||||||
darklua process -c lines.json5 $file processed/$(basename "$file")
|
darklua process -c lines.json5 $file processed/$(basename "${file::-1}")
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue