mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
8 lines
304 B
Text
8 lines
304 B
Text
|
|
path_to_preferences=/C/Users/Daw/AppData/Local/'Tracks Live'
|
||
|
|
if [ -d /C/Users/Daw/AppData/Local/'Tracks Live'/ ] ; then
|
||
|
|
# delete Preferences
|
||
|
|
echo "Folder:" $path_to_preferences "was deleted"
|
||
|
|
rm -rf /C/Users/Daw/AppData/Local/'Tracks Live'/
|
||
|
|
else
|
||
|
|
echo "Folder:" $path_to_preferences "wasn't found"
|
||
|
|
fi
|