Skip to content

Commit

Permalink
fix sync script
Browse files Browse the repository at this point in the history
  • Loading branch information
YaroShkvorets committed Mar 2, 2024
1 parent 1e2886d commit 06e253f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ tasks:
git fetch --all &> /dev/null
MERGE_RESULT=$(git merge --no-commit --no-ff template/main &>/dev/null || echo "Merge conflicts.")
if [[ $MERGE_RESULT =~ "Already up to date." ]]; then
if [[ "$MERGE_RESULT" =~ "Already up to date." ]]; then
echo "No template changes to sync";
exit 0;
fi
Expand Down

0 comments on commit 06e253f

Please sign in to comment.