Commit 386c3ab5f5125bcb55b329c4f02b8ace26b6da8a
1 parent
01782adc
Use rm -f rather than chmod
Showing
1 changed file
with
1 additions
and
2 deletions
scripts/downloadDatasets.sh
| ... | ... | @@ -64,6 +64,5 @@ if [ ! -d ../data/KTH/vid ]; then |
| 64 | 64 | rm ${vidclass}.zip |
| 65 | 65 | done |
| 66 | 66 | # this file is corrupted |
| 67 | - chmod +w ../data/KTH/vid/boxing/person01_boxing_d4_uncomp.avi | |
| 68 | - rm ../data/KTH/vid/boxing/person01_boxing_d4_uncomp.avi | |
| 67 | + rm -f ../data/KTH/vid/boxing/person01_boxing_d4_uncomp.avi | |
| 69 | 68 | fi | ... | ... |