summaryrefslogtreecommitdiffstats
path: root/s2i/bin/assemble.pre
blob: f888ff6a865123b190c793f5b365863128cdcd4b (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; set | grep -i -e _proxy= || true)
echo "-=-"