diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 13:03:38 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 13:03:38 +0200 |
commit | df306b2ee1f4ff2b973e369258a183987c2fc161 (patch) | |
tree | 679666fb69d4f9cdc2e17f4c7eb02f215eb5e860 | |
parent | 8dd8b0d5d26211d6c964db101a7af0d79551e682 (diff) | |
download | s2i-jekyll-df306b2ee1f4ff2b973e369258a183987c2fc161.tar.gz |
some debug logging
-rwxr-xr-x | s2i/bin/assemble | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index f2a4773..c032801 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -48,8 +48,10 @@ dest="/opt/app-root/src/html$base" echo "---> Copying pages to $dest ..." pushd _site mkdir -p "$dest" -cp -a . "$dest" +cp -av . "$dest" +ls -la /opt/app-root/src/html popd echo "---> Fix permissions ..." fix-permissions ./ +ls -la /opt/app-root/src/html |