Skip to content

Commit

Permalink
added quotes to prevent error in echo caused by parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Feb 15, 2024
1 parent 525809d commit c1cb3c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update_truth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
git config --global user.email "97135045+metplus-bot@users.noreply.github.com"
echo git checkout ${branch_name}
git checkout ${branch_name}
echo git checkout -d update_truth_for_${branch_name} (delete local if exists)
echo "git checkout -d update_truth_for_${branch_name} (delete local if exists)"
git checkout -d update_truth_for_${branch_name}
echo git checkout -b update_truth_for_${branch_name} (create from ${branch_name})
echo "git checkout -b update_truth_for_${branch_name} (create from ${branch_name})"
git checkout -b update_truth_for_${branch_name}
echo git merge -s ours origin/${branch_name}-ref
git merge -s ours origin/${branch_name}-ref
Expand Down

0 comments on commit c1cb3c4

Please sign in to comment.