diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 12:29:17 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-10 12:29:17 +0200 |
commit | 4c0ab49fdd18e33fcba99fe4de692a1c56b6d82c (patch) | |
tree | aac566b59ce6d7e9dbe0959518736107c20f0739 | |
parent | 2cdba8e037f7b7ef5f400d328dd1895979ba06a4 (diff) | |
download | s2i-jekyll-4c0ab49fdd18e33fcba99fe4de692a1c56b6d82c.tar.gz |
fix html path
-rwxr-xr-x | s2i/bin/assemble | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index 723d4e4..f2a4773 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -43,7 +43,7 @@ if test -f _config.yml; then else base="" fi -dest="${HTTPD_APP_ROOT}/html$base" +dest="/opt/app-root/src/html$base" echo "---> Copying pages to $dest ..." pushd _site |