Olaf Bohlen
2022-01-19 8a3ee2523405d66c8d6564ad79f33e15b7481655
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