mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 06:00:46 +00:00
Don't use bashisms in post-build scripts
They're always run with /bin/sh and that doesn't always equal to bash
This commit is contained in:
@@ -123,7 +123,7 @@
|
||||
copy "$(TargetDir)$(TargetName).exe" "$(SolutionDir)out\ASF-ConfigGenerator.exe"
|
||||
</PostBuildEvent>
|
||||
<PostBuildEvent Condition=" '$(OS)' == 'Unix' AND '$(ConfigurationName)' == 'Release' ">
|
||||
if [[ -f "$(SolutionDir)mono_envsetup.sh" ]]; then
|
||||
if [ -f "$(SolutionDir)mono_envsetup.sh" ]; then
|
||||
source "$(SolutionDir)mono_envsetup.sh"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user