mirror of
https://git.sr.ht/~rabbits/uxn
synced 2024-11-29 01:03:00 +00:00
13 lines
255 B
Bash
Executable file
13 lines
255 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# need launcher.rom to be included
|
|
./build.sh --no-run
|
|
# duplicate? already have a piano
|
|
rm -f bin/asma-piano.rom
|
|
|
|
# get more roms
|
|
curl https://rabbits.srht.site/uxn-rompack.tar.gz | tar -C bin -xzf -
|
|
mv bin/uxn/*.rom bin
|
|
rm -r bin/uxn
|