Different attempt for windows

pull/196/head
James Ball 2023-12-30 12:43:56 +00:00 zatwierdzone przez James H Ball
rodzic ac0759ef4d
commit 0278841e54
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -55,7 +55,6 @@ if [ "$OS" = "mac" ]; then
cd "$ROOT/Builds/MacOSX"
xcodebuild -configuration Release || exit 1
ls "$ROOT/Builds/MacOSX/Release"
ls "$ROOT/Builds/MacOSX"
cp "$ROOT/Builds/MacOSX/Release/$PLUGIN.app" "$ROOT/ci/bin"
@ -100,5 +99,8 @@ if [ "$OS" = "win" ]; then
echo "Copy VST3"
ls "$ROOT/Builds/VisualStudio2022/x64/Release/"
ls "$ROOT/Builds/VisualStudio2022/x64/Release/VST3/"
cp "$ROOT/Builds/VisualStudio2022/x64/Release/VST3/$PLUGIN.vst3" "$ROOT/bin"
stat "$ROOT/Builds/VisualStudio2022/x64/Release/VST3/$PLUGIN.vst3"
cp -r "$ROOT/Builds/VisualStudio2022/x64/Release/VST3/$PLUGIN.vst3" "$ROOT/bin"
fi