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