Merge pull request #32 from icepic/main

Simplify samples/build.sh by using subshells
This commit is contained in:
drmortalwombat 2023-10-25 10:59:19 +02:00 committed by GitHub
commit 50031f56af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,45 +1,24 @@
#!/bin/sh
cd fractals
./build.sh
cd ..
cd games
./build.sh
cd ..
( cd fractals ; ./build.sh )
cd hires
./build.sh
cd ..
( cd games ; ./build.sh )
cd hiresmc
./build.sh
cd ..
( cd hires ; ./build.sh )
cd particles
./build.sh
cd ..
( cd hiresmc ; ./build.sh )
cd kernalio
./build.sh
cd ..
( cd particles ; ./build.sh )
cd memmap
./build.sh
cd ..
( cd kernalio ; ./build.sh )
cd rasterirq
./build.sh
cd ..
( cd memmap ; ./build.sh )
cd scrolling
./build.sh
cd ..
( cd rasterirq ; ./build.sh )
cd sprites
./build.sh
cd ..
( cd scrolling ; ./build.sh )
cd stdio
./build.sh
cd ..
( cd sprites ; ./build.sh )
( cd stdio ; ./build.sh )