We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbde47d commit 302335aCopy full SHA for 302335a
1 file changed
scripts/download-libs.sh
@@ -50,14 +50,12 @@ rm -f "/tmp/$LIBS_ARCHIVE"
50
# Verify checksums if file exists
51
if [[ -f "$LIBS_DIR/checksums.sha256" ]]; then
52
echo "Verifying checksums..."
53
- cd "$LIBS_DIR"
54
- if shasum -a 256 -c checksums.sha256 --quiet 2>/dev/null; then
+ if shasum -a 256 -c "$LIBS_DIR/checksums.sha256" --quiet 2>/dev/null; then
55
echo "Checksums OK"
56
else
57
echo "WARNING: Checksum verification failed!"
58
exit 1
59
fi
60
- cd - >/dev/null
61
62
63
# Mark as downloaded
0 commit comments