This commit is contained in:
Polprzewodnikowy 2022-08-19 19:53:43 +02:00
parent 16ebbab119
commit d506dfa225
2 changed files with 8 additions and 5 deletions

View File

@ -71,6 +71,5 @@ Current goal is to rewrite README.md
## Finished sample
![SC64 HW ver: 2.0 TOP](.github/sc64_v2_top.jpg | width=64)
![SC64 HW ver: 2.0 BOTTOM](.github/sc64_v2_bottom.jpg | width=64)
<img src=".github/sc64_v2_top.jpg" alt="SC64 HW ver: 2.0 PCB top" width="640" />
<img src=".github/sc64_v2_bottom.jpg" alt="SC64 HW ver: 2.0 PCB bottom" width="640" />

View File

@ -1,7 +1,5 @@
#!/bin/bash
set -e
BUILDER_IMAGE="ghcr.io/polprzewodnikowy/sc64env:v1.5"
pushd $(dirname $0) > /dev/null
@ -27,4 +25,10 @@ docker run \
$BUILDER_IMAGE \
./build.sh $@
BUILD_ERROR = $?
popd > /dev/null
if [ $BUILD_ERROR -ne 0 ]; then
exit -1
fi