summaryrefslogtreecommitdiffstats
path: root/s2i/bin/assemble.pre
blob: c5fb359129d16f6dbfd5cdd499b9cd8364ce60ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if [[ "$1" == "-h" ]]; then
	exec /usr/libexec/s2i/usage
fi

set -e

export HOME=/opt/app-root/src
cd $HOME

echo "-=- debug -=-"
(set -x; id -a; pwd)
echo "-=-"