2024-02-01 08:56:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-02-01 09:08:32 +00:00
|
|
|
echo Removing common files
|
|
|
|
|
2024-02-01 08:56:12 +00:00
|
|
|
rm -fr common/cmd common/web common/daisy-seed common/lv2 common/vst3 common/android
|
|
|
|
|
2024-02-03 07:09:18 +00:00
|
|
|
dirs="fx_ap1 fx_ap2 fx_balance fxpp_ap1 fxpp_ap2 fxpp_balance"
|
2024-02-01 09:08:32 +00:00
|
|
|
|
|
|
|
for d in $dirs; do
|
|
|
|
echo Removing data files for $d
|
|
|
|
|
|
|
|
rm -fr $d/cmd $d/web $d/daisy-seed $d/lv2 $d/vst3 $d/android
|
|
|
|
done
|