Skip to content

Commit

Permalink
escape path in fastlane shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
hosy committed Jan 10, 2024
1 parent 58025c2 commit d4e08d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@ end
set_info_plist_value(path: "ownCloud Action Extension/Info.plist", key: "CFBundleDisplayName", value: "Save to " + appName)
set_info_plist_value(path: "ownCloud Action Extension/Info.plist", key: "CFBundleName", value: appName)

sh("sed -i '' '/\"CFBundleDisplayName\" =/s/ownCloud/#{appName}/' ../ownCloud\ Action\ Extension/en.lproj/InfoPlist.strings")
sh("sed -i '' '/\"CFBundleDisplayName\" =/s/ownCloud/#{appName}/' ../ownCloud\ Action\ Extension/de.lproj/InfoPlist.strings")
sh("sed -i '' '/\"CFBundleDisplayName\" =/s/ownCloud/#{appName}/' '../ownCloud Action Extension/en.lproj/InfoPlist.strings'")
sh("sed -i '' '/\"CFBundleDisplayName\" =/s/ownCloud/#{appName}/' '../ownCloud Action Extension/de.lproj/InfoPlist.strings'")

update_app_identifier(
xcodeproj: "ownCloud.xcodeproj",
Expand Down

0 comments on commit d4e08d7

Please sign in to comment.