Factory Prest Assets

This commit is contained in:
Robin E.R. Davies
2026-05-31 02:46:12 -04:00
parent 68d195f9fb
commit 779f3c80ad
16 changed files with 60 additions and 45 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/bash
export SRC_ZIP="V3 Factory Presets.piBank"
export DST_ZIP="Factory Presets.piBank"
rm "presets/$DST_ZIP"
rm -rf temp_folder
echo Unpacking "$SRC_ZIP"
unzip "$SRC_ZIP" -d ./temp_folder
cd temp_folder
cp -r ../Factory_Presets_Extra/* ./
echo Repacking "../presets/$DST_ZIP"
zip -r9 "../presets/$DST_ZIP" .
cd ..
rm -rf temp_folder