We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6cd730 commit cd237f5Copy full SHA for cd237f5
1 file changed
entrypoint.sh
@@ -92,7 +92,9 @@ else
92
fi
93
94
# Copy dotorg assets to /assets
95
-rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
+if [[ -d "$GITHUB_WORKSPACE/$ASSETS_DIR/" ]]; then
96
+ rsync -rc "$GITHUB_WORKSPACE/$ASSETS_DIR/" assets/ --delete
97
+fi
98
99
# Add everything and commit to SVN
100
# The force flag ensures we recurse into subdirectories even if they are already added
0 commit comments