2024-02-01 08:56:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-02-01 09:08:32 +00:00
|
|
|
echo Removing common files
|
|
|
|
|
2024-02-05 15:34:22 +00:00
|
|
|
rm -fr common/cmd common/web common/daisy-seed common/lv2 common/vst3 common/android common/ios
|
2024-02-01 08:56:12 +00:00
|
|
|
|
2024-02-16 08:43:18 +00:00
|
|
|
dirs="fx* synth*"
|
2024-02-01 09:08:32 +00:00
|
|
|
|
|
|
|
for d in $dirs; do
|
|
|
|
echo Removing data files for $d
|
|
|
|
|
2024-02-05 15:34:22 +00:00
|
|
|
rm -fr $d/cmd $d/web $d/daisy-seed $d/lv2 $d/vst3 $d/android $d/ios
|
2024-02-01 09:08:32 +00:00
|
|
|
done
|