From d4e08d7a77d7260a1e65004b2395d3644560c6c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Hu=CC=88hne?= Date: Wed, 10 Jan 2024 13:24:28 +0100 Subject: [PATCH] escape path in fastlane shell command --- fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1696f24bb..c779c5620 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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",