NeuralPi

Raspberry Pi guitar pedal using neural networks to emulate real amps and effects
Log | Files | Refs | Submodules | README

commit 24f37d12cb30307ca2c5adf503dcce4b4baec893
parent cb92065b88aa2868ec574b558ee790472d8c204b
Author: Keith Bloemer <32459398+GuitarML@users.noreply.github.com>
Date:   Tue,  8 Feb 2022 05:06:51 -0600

Update build_deb.sh
Diffstat:
Minstallers/linux/build_deb.sh | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/installers/linux/build_deb.sh b/installers/linux/build_deb.sh @@ -24,16 +24,16 @@ Description: GuitarML Plugin Debian Package\n" > $app_name"/DEBIAN/control" # 2. Copy Standalone, VST3, and LV2 plugins to the package directory (assumes project is already built) mkdir -p $app_name/opt/GuitarML/ -echo "Copying ../../build/"$app_name"_artefacts/Standalone/"$app_name -cp "../../build/"$app_name"_artefacts/Standalone/"$app_name $app_name"/opt/GuitarML/" +echo "Copying ../../build/"$app_name"_artefacts/Release/Standalone/"$app_name +cp "../../build/"$app_name"_artefacts/Release/Standalone/"$app_name $app_name"/opt/GuitarML/" mkdir -p $app_name/usr/local/lib/vst3/ -echo "Copying ../../build/"$app_name"_artefacts/VST3/"$app_name".vst3" -cp -r "../../build/"$app_name"_artefacts/VST3/"$app_name".vst3" $app_name"/usr/local/lib/vst3/" +echo "Copying ../../build/"$app_name"_artefacts/Release/VST3/"$app_name".vst3" +cp -r "../../build/"$app_name"_artefacts/Release/VST3/"$app_name".vst3" $app_name"/usr/local/lib/vst3/" mkdir -p $app_name/usr/local/lib/lv2/ -echo "Copying ../../build/"$app_name"_artefacts/LV2/"$app_name".lv2" -cp -r "../../build/"$app_name"_artefacts/LV2/"$app_name".lv2" $app_name"/usr/local/lib/lv2/" +echo "Copying ../../build/"$app_name"_artefacts/Release/LV2/"$app_name".lv2" +cp -r "../../build/"$app_name"_artefacts/Release/LV2/"$app_name".lv2" $app_name"/usr/local/lib/lv2/" # 3. Build the .deb package and rename