Skip to content

Commit

Permalink
Update ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunkomath committed Dec 26, 2023
1 parent b4ca5b9 commit 9b8fb1f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ci_scripts/ci_post_clone.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/bin/sh

echo "$GOOGLE_SERVICE_INFO_BASE64" | base64 --decode > "$SRCROOT/netdata/GoogleService-Info.plist"
set -e # Exit immediately if a command exits with a non-zero status.

echo "$GOOGLE_SERVICE_INFO_BASE64" | base64 --decode > "$SRCROOT/netdata/GoogleService-Info.plist" || {
echo "Failed to decode and write GoogleService-Info.plist"
exit 1
}

0 comments on commit 9b8fb1f

Please sign in to comment.