phraseapp_updater 2.0.9 → 2.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/synchronize_phraseapp.sh +1 -1
- data/lib/phraseapp_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e77fc445857a954b363ba696c6b0696121ed33fa5b4b59eddc92306f94bfa10
|
4
|
+
data.tar.gz: 2433ddde7e837634c2e24f1597f8b9a5b7b1c169c84c7b72bb37fe5d76512774
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7625186b9ea217a918de59e58d686592ed117811a9ba7a380a84c635e2f9e07e3f8a2642e9f6de5c08ed3243aa9a7b698bc6f911fbf2cd62ff17c4fbd4cf50ec
|
7
|
+
data.tar.gz: 87e307dd1f92b2715bd9c222927ff9a159b7c89f06399b4fa517e73e58c8753030d03ebd1604f9b7a5afa6b92620e737fbdc2c0bd6c5b5fe63474bfccc8ff028
|
@@ -27,7 +27,7 @@ current_branch=$(git rev-parse "${REMOTE}/${BRANCH}")
|
|
27
27
|
|
28
28
|
# If there's a local checkout of that branch, for safety's sake make sure that
|
29
29
|
# it's up to date with the remote one.
|
30
|
-
local_branch=$(git rev-parse "${BRANCH}" || true)
|
30
|
+
local_branch=$(git rev-parse --quiet --verify "${BRANCH}" || true)
|
31
31
|
if [ "$local_branch" ] && [ "$current_branch" != "$local_branch" ]; then
|
32
32
|
echo "Error: local branch '${BRANCH}' exists but does not match '${REMOTE}/${BRANCH}'." >&2
|
33
33
|
exit 1
|