diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-22 15:37:41 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-22 15:37:41 +0100 |
commit | b838fc6944733c6864b63c5c1c8dc9e2c50d57fc (patch) | |
tree | 4c8914fc958f0cef9ad19bbbb36bffaf5d37eaf8 | |
parent | 400b38626c461db64d4e584bd612451bc37e9961 (diff) | |
download | s2i-virtio-spec-b838fc6944733c6864b63c5c1c8dc9e2c50d57fc.tar.gz |
fix home path, debug
-rwxr-xr-x | s2i/bin/assemble | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index 19db8fa..94ef79f 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -11,9 +11,11 @@ if [[ "$1" == "-h" ]]; then exec /usr/libexec/s2i/usage fi -cat /etc/passwd -pwd -export HOME=/opt/app-root +echo "--- debug ---" +id -a +echo "---" + +export HOME=/opt/app-root/src cd $HOME echo "---> Installing application source ..." |