fix dangling stack item in install.spl

This commit is contained in:
Daniella 2023-04-08 17:59:04 +02:00
parent e7317683fa
commit cdcb27b91a
Signed by: TudbuT
GPG key ID: 7D63D5634B7C417F
2 changed files with 2 additions and 2 deletions

View file

@ -195,7 +195,7 @@ func main { mega | with args ;
I lied. This is now no longer 100% equivalent. Let's look at what happens
under the hood.
```asm
```js
call Range
objpush
const mega 0

View file

@ -1,6 +1,6 @@
"to be run with `cargo run install.spl`.";
func main { mega |
func main { mega | with args ;
[ "sudo" "mkdir" "/usr/lib/spl" ] command-wait;
[ "sh" "-c" "sudo cp *.spl /usr/lib/spl" ] command-wait;
[ "cargo" "build" "--release" ] command-wait;