Skip to content

Commit

Permalink
Fix 1_clean_workspace.sh script not deleting files in data_src/
Browse files Browse the repository at this point in the history
  • Loading branch information
chychkan committed Jul 7, 2020
1 parent c660a1f commit a3f6898
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/1_clean_workspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
cd "$(dirname $0)/.."
source scripts/env.sh

rm -fr "$WORKSPACE/data_src/*"
rm -fr "$WORKSPACE/data_dst/*"
rm -fr "$WORKSPACE/model/*"
rm -fr $WORKSPACE/data_src/*
rm -fr $WORKSPACE/data_dst/*
rm -fr $WORKSPACE/model/*

0 comments on commit a3f6898

Please sign in to comment.