diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-06 06:42:03 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-09-06 06:42:03 +0200 |
commit | 8a26c4d30a9b629e611ceb88e5dd5b134ec2182e (patch) | |
tree | dd705026d73225f47f431be2c0855005a3d9a1a4 | |
parent | 587060a8f628edfb7ed9d0643d63f66557200ba7 (diff) | |
download | s2i-jekyll-8a26c4d30a9b629e611ceb88e5dd5b134ec2182e.tar.gz |
fix tyops
-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 45c4b4c..63cdb20 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -32,7 +32,7 @@ if test -f Gemfile; then else jekyll build fi -if test -f _config.yaml; then +if test -f _config.yml; then base=$(awk '/^baseurl/ { print $2 }' _config.yml | tr -d '"') else base="" |