diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-22 15:28:50 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-11-22 15:28:50 +0100 |
commit | 20508b365ed7b33f8f61d822a2269a1f90222c8e (patch) | |
tree | 7825a629df71832fbbe63b1f6b85e03c61e6fd76 | |
parent | 74e2fe47e74c270ba19448419a592654812b0724 (diff) | |
download | s2i-virtio-spec-20508b365ed7b33f8f61d822a2269a1f90222c8e.tar.gz |
fix permissions, debug
-rwxr-xr-x | s2i/bin/assemble | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index c8e04f6..19db8fa 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -11,6 +11,8 @@ if [[ "$1" == "-h" ]]; then exec /usr/libexec/s2i/usage fi +cat /etc/passwd +pwd export HOME=/opt/app-root cd $HOME @@ -26,4 +28,5 @@ mkdir output cp -v virtio-spec/*.{html,css,pdf} output echo "---> Fix permissions ..." -fix-permissions ./ +chmod +x . output +chmod -R +r . |