Olaf Bohlen
2020-11-12 5c9e96df8b25ff2c2b9677bcd6eba7fe5ee7e813
commit | author | age
43993f 1 #!/bin/bash
OB 2
3 # pre code
4 echo "hello class"
5
9ce154 6 /usr/libexec/s2i/assemble
43993f 7 rc=$?
OB 8
9ce154 9 if [ $rc -eq 0 ]; then
43993f 10   echo "bye class"
OB 11 else
12   echo "sorry, build failed"
13 fi
14
9ce154 15 exit $rc