Slightly speed up building of y.rs

This commit is contained in:
bjorn3 2022-03-16 19:21:24 +01:00
parent 64bc2352ee
commit 9a8da8c64a

2
y.rs
View File

@ -3,7 +3,7 @@
# This block is ignored by rustc
set -e
echo "[BUILD] y.rs" 1>&2
rustc $0 -o ${0/.rs/.bin} -g
rustc $0 -o ${0/.rs/.bin} -Cdebuginfo=1
exec ${0/.rs/.bin} $@
*/