diff options
author | Jonas Smedegaard <dr@jones.dk> | 2006-05-27 19:17:01 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2006-05-27 19:17:01 +0000 |
commit | b859e56419c993cfdadc7936a4d72ae04aed46e1 (patch) | |
tree | 02d6db727260306f86a4ac1a5a1d6c2224b4fbba /localsonganizer | |
parent | b3820d9a6ad973e77545e5fb4b64eed14ac7d522 (diff) |
Remove tempdir after use.
Diffstat (limited to 'localsonganizer')
-rwxr-xr-x | localsonganizer | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/localsonganizer b/localsonganizer index 6836118..f8d50e8 100755 --- a/localsonganizer +++ b/localsonganizer @@ -431,3 +431,4 @@ initTempTargetDirs $wantedtargets find ${datadirs} \( -iname "*.mp3" -or -iname "*.mpeg" \) -and -type f -print | (while read file; do symlinksToFile "$file" mp3 $wantedtargets; done) find ${datadirs} -iname "*.ogg" -and -type f -print | (while read file; do symlinksToFile "$file" ogg $wantedtargets; done) moveSymlinkDirs $wantedtargets +rm -rf "${tempdir}" |