Skip to content

Commit

Permalink
Check if directory exists in sync-web-site.sh
Browse files Browse the repository at this point in the history
- This should fix the sync issues with quarkusio.github.io
  • Loading branch information
gastaldi committed Mar 17, 2023
1 parent 924b450 commit e71fa26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sync-web-site.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ rsync -vr --delete \
target/asciidoc/sources/ \
$TARGET_GUIDES

if [ -f ../target/asciidoc/generated/ ]; then
if [ -d ../target/asciidoc/generated/ ]; then
echo
echo "Copying from ../target/asciidoc/generated/ to $TARGET_CONFIG"
echo
Expand Down

0 comments on commit e71fa26

Please sign in to comment.