We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 661d2af commit 6ed86bbCopy full SHA for 6ed86bb
.github/scripts/autoupdate-scripts-sha.sh
@@ -35,7 +35,9 @@ for base in "${changed[@]}"; do
35
fi
36
sha=$(sha256sum "$docf" | awk '{print $1}')
37
echo "$sha $docf" > "$DOCS_DIR/$base.sha256"
38
- echo "$sha $docf" > "$sitef.sha256"
+ if [[ -d "$SITE_DIR" ]]; then
39
+ echo "$sha $docf" > "$sitef.sha256"
40
+ fi
41
modified=1
42
echo "Updated sha for $base -> $sha"
43
# Replace line in scripts.sha256
0 commit comments