Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.5.2 with Firebase CLI 12.9 #1757

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/install/install_firebase.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
OUTPUT_DIR=".tools/firebase"


EXPECTED_FIREBASE_HASH="7861cece52615d89aeed5b29601a8c46"
EXPECTED_FIREBASE_HASH="9a1c3fb10726c370144f5ea6ca063664"

# check if firebase is already installed by hashing all files in the output directory
if [ -d "$OUTPUT_DIR" ] && [ "$(find "$OUTPUT_DIR" -type f -exec md5 {} \; | md5)" = $EXPECTED_FIREBASE_HASH ]; then
Expand All @@ -22,7 +22,7 @@ fi
mkdir -p "$OUTPUT_DIR"

# download the latest release of firebase
curl -o "$OUTPUT_DIR/firebase" -L --progress-bar "https://firebase.tools/bin/macos/latest"
curl -o "$OUTPUT_DIR/firebase" -L --progress-bar "https://firebase.tools/bin/macos/v12.9.1"
chmod +x ./$OUTPUT_DIR/firebase

# if the hash of downloaded firebase is not the expected value, exit with an error
Expand Down
Loading