Skip to content

Commit 9874336

Browse files
committed
Fix quoting (double instead of single)
1 parent 53665cc commit 9874336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-fire

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fire() {
4848
git push --set-upstream "${remote}" "$(current_branch)" || true
4949
done
5050

51-
if [ '$(git stash list)' != '' ]; then
51+
if [ "$(git stash list)" != '' ]; then
5252
for sha in $(git rev-list -g stash); do
5353
git push origin "$sha":refs/heads/"$(current_branch $initial_branch)"-stash-"$sha"
5454
done

0 commit comments

Comments
 (0)