Skip to content

Commit

Permalink
ci(INJI-564): fix quoting in sed script (#1079)
Browse files Browse the repository at this point in the history
Signed-off-by: Harsh Vardhan <[email protected]>
  • Loading branch information
vharsh authored Dec 10, 2023
1 parent b31fbd3 commit 9edd04b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ platform :ios do
current_build_number = previous_build_number + 1

increment_build_number(
xcodeproj: "Inji.xcodeproj",
xcodeproj: "Inji.xcodeproj",
build_number: current_build_number
)

Expand All @@ -130,7 +130,7 @@ platform :ios do

# replace Product name
p = "s|PRODUCT_NAME = Inji|PRODUCT_NAME = \"#{generate_app_name}\"|"
sh ("sed -i '' -e #{p} ../Inji.xcodeproj/project.pbxproj")
sh ("sed -i '' -e '#{p}' ../Inji.xcodeproj/project.pbxproj")

# update app display name
update_info_plist(
Expand Down

0 comments on commit 9edd04b

Please sign in to comment.