Olaf Bohlen
2020-11-11 9ce1545cb766899d406c03cdbdc7ccd907738e89
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/assemble
rc=$?
 
if [ $rc -eq 0 ]; then
  echo "bye class"
else
  echo "sorry, build failed"
fi
 
exit $rc