Skip to content

Commit

Permalink
Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Mar 13, 2024
1 parent 58c6460 commit e7547fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ release in progress and you're making a follow-up internal release that includes
# Create the branch and push
if is_ci
sha = Action.sh('git', 'rev-parse', source_version).chomp
Action.sh('gh', 'api', '--method', 'POST', '/repos/duckduckgo/macos-browser/git/refs', '-f', "ref='refs/heads/#{release_branch}'", '-f', "sha='#{sha}'")
Action.sh('gh', 'api', '--method', 'POST', '/repos/duckduckgo/macos-browser/git/refs', '-f', "ref=refs/heads/#{release_branch}", '-f', "sha=#{sha}")
else
Action.sh('git', 'fetch', '--tags')
Action.sh('git', 'checkout', '-b', release_branch, source_version)
Expand Down

0 comments on commit e7547fa

Please sign in to comment.