You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Replace double double quotes with a single double quote. This happens in source code that generates project files (for tests).
54
-
sed $SED_INPLACE_FLAGS's/""/"/g'"$TMPPATH"
54
+
sed "${SED_INPLACE_FLAGS[@]}"'s/""/"/g'"$TMPPATH"
55
55
56
56
# Remove packages that we build locally
57
-
sed $SED_INPLACE_FLAGS'/Xamarin.Tests.FrameworksInRuntimesNativeDirectory/d'"$TMPPATH"
58
-
sed $SED_INPLACE_FLAGS'/Xamarin.Tests.DynamicLibrariesInRuntimesNativeDirectory/d'"$TMPPATH"
59
-
sed $SED_INPLACE_FLAGS'/Xamarin.Tests.XCFrameworkWithStaticLibraryInRuntimesNativeDirectory/d'"$TMPPATH"
60
-
sed $SED_INPLACE_FLAGS'/Xamarin.Tests.XCFrameworkWithSymlinks/d'"$TMPPATH"
57
+
sed "${SED_INPLACE_FLAGS[@]}"'/Xamarin.Tests.FrameworksInRuntimesNativeDirectory/d'"$TMPPATH"
58
+
sed "${SED_INPLACE_FLAGS[@]}"'/Xamarin.Tests.DynamicLibrariesInRuntimesNativeDirectory/d'"$TMPPATH"
59
+
sed "${SED_INPLACE_FLAGS[@]}"'/Xamarin.Tests.XCFrameworkWithStaticLibraryInRuntimesNativeDirectory/d'"$TMPPATH"
60
+
sed "${SED_INPLACE_FLAGS[@]}"'/Xamarin.Tests.XCFrameworkWithSymlinks/d'"$TMPPATH"
61
61
62
62
# Get only the name and version of each package, and write that back in a PackageDownload item
63
-
sed $SED_INPLACE_FLAGS's@.*<PackageReference.*Include="\([a-zA-Z0-9._-]*\)".*Version="\([a-zA-Z0-9._-]*\)".*>.*@\t\t<PackageDownload Include="\1" Version="[\2]" />@g'"$TMPPATH"
63
+
sed "${SED_INPLACE_FLAGS[@]}"'s@.*<PackageReference.*Include="\([a-zA-Z0-9._-]*\)".*Version="\([a-zA-Z0-9._-]*\)".*>.*@\t\t<PackageDownload Include="\1" Version="[\2]" />@g'"$TMPPATH"
0 commit comments