gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 1963624398e9eba8c7e8f96ddb9e6efca34c7dbd
parent 32316a1999dcffea5b8199d9e4568a0ecf11e87f
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Fri, 16 Jul 2021 03:03:10 +0200

fix move command

Diffstat:
Mbuild_linux.sh | 6+++---
Mbuild_mac.sh | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/build_linux.sh b/build_linux.sh @@ -4,6 +4,6 @@ cmake --build . --config Release cpack -G DEB cpack -G RPM cpack -G ZIP -move *.deb ../../deploy/ -move *.rpm ../../deploy/ -move *.zip ../../deploy/ +mv *.deb ../../deploy/ +mv *.rpm ../../deploy/ +mv *.zip ../../deploy/ diff --git a/build_mac.sh b/build_mac.sh @@ -2,4 +2,4 @@ cmake -G Xcode -S . -B ./temp/cmake cd ./temp/cmake cmake --build . --config Release cpack -G ZIP -move *.zip ../../deploy/ +mv *.zip ../../deploy/