Skip to content

Commit

Permalink
[scripts] combine_data.sh: rm -r $dest fail when $dest not exists (k…
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdwkimdw committed May 28, 2021
1 parent 0c51c8d commit 436d243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egs/wsj/s5/utils/combine_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ shift;

first_src=$1;

rm -r $dest 2>/dev/null
rm -r $dest 2>/dev/null || true
mkdir -p $dest;

export LC_ALL=C
Expand Down

0 comments on commit 436d243

Please sign in to comment.