ableos-vfs/run.sh

11 lines
178 B
Bash
Raw Normal View History

2023-07-12 06:17:00 +00:00
# exit if anything fails
set -e
INPUT=$(realpath $1)
2023-07-12 10:47:49 +00:00
mkdir -p target
2023-07-12 06:17:00 +00:00
cd holey-bytes/hbasm
cat $INPUT | cargo run > ../../target/out
cd ../hbvm
2023-07-12 10:47:49 +00:00
cat ../../target/out | cargo run