Skip to content

Commit 06e253f

Browse files
committed
fix sync script
1 parent 1e2886d commit 06e253f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ tasks:
167167
git fetch --all &> /dev/null
168168
MERGE_RESULT=$(git merge --no-commit --no-ff template/main &>/dev/null || echo "Merge conflicts.")
169169
170-
if [[ $MERGE_RESULT =~ "Already up to date." ]]; then
170+
if [[ "$MERGE_RESULT" =~ "Already up to date." ]]; then
171171
echo "No template changes to sync";
172172
exit 0;
173173
fi

0 commit comments

Comments
 (0)