Fix 1_clean_workspace.sh script not deleting files in data_src/

This commit is contained in:
Oleksandr Chychkan 2020-07-06 23:24:48 -07:00
parent c660a1fc92
commit a3f6898f49
1 changed files with 3 additions and 3 deletions

View File

@ -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/*