diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-05 22:52:52 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2021-07-05 22:52:52 +0200 |
| commit | a59e0d8ac76425bb2f52d8c1abf4d19fea1458f0 (patch) | |
| tree | 816e4eca3e67a1514751a3a28e7506ab27d4921b /script/build.sh | |
| parent | 51df2f21e7ec2cf0e4887ab7615a96938d637274 (diff) | |
| download | jo.mssola.com-a59e0d8ac76425bb2f52d8c1abf4d19fea1458f0.tar.gz jo.mssola.com-a59e0d8ac76425bb2f52d8c1abf4d19fea1458f0.zip | |
script: do not bail out on failing to create some dirs
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'script/build.sh')
| -rwxr-xr-x | script/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/build.sh b/script/build.sh index 4a96306..8502100 100755 --- a/script/build.sh +++ b/script/build.sh @@ -44,7 +44,7 @@ yarn run webpack-single-shot bundle rm -rf $BUILD_DEST/* bundle exec jekyll build -s $BUILD_SOURCE -d $BUILD_DEST -mkdir $BUILD_DEST/about $BUILD_DEST/en/about +mkdir -p $BUILD_DEST/about $BUILD_DEST/en/about # Hack to fix some issues with the about page... cp $BUILD_DEST/about.html $BUILD_DEST/about/index.html |
