fixup! Enabling extra platforms
This commit is contained in:
parent
e1d9e16ee6
commit
79a5ec657e
|
@ -28,12 +28,12 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
BUNDLEDVERSIONS="${{env.DOTNET_ROOT}}/dotnet/sdk/${DOTNET_VERSION}/Microsoft.NETCoreSdk.BundledVersions.props"
|
BUNDLEDVERSIONS="${{env.DOTNET_ROOT}}/dotnet/sdk/${DOTNET_VERSION}/Microsoft.NETCoreSdk.BundledVersions.props"
|
||||||
echo $BUNDLEDVERSIONS
|
echo "$BUNDLEDVERSIONS"
|
||||||
if grep -q freebsd-x64 $BUNDLEDVERSIONS; then
|
if grep -q freebsd-x64 "$BUNDLEDVERSIONS"; then
|
||||||
echo "Extra platforms already enabled"
|
echo "Extra platforms already enabled"
|
||||||
else
|
else
|
||||||
echo "Enabling extra platform support"
|
echo "Enabling extra platform support"
|
||||||
sed -i.ORI 's/osx-x64/osx-x64;freebsd-x64;linux-x86/' $BUNDLEDVERSIONS
|
sed -i.ORI 's/osx-x64/osx-x64;freebsd-x64;linux-x86/' "$BUNDLEDVERSIONS"
|
||||||
fi
|
fi
|
||||||
- name: Build Backend
|
- name: Build Backend
|
||||||
run: ./build.sh --backend --enable-extra-platforms --packages
|
run: ./build.sh --backend --enable-extra-platforms --packages
|
||||||
|
|
Loading…
Reference in New Issue