3 Commits

Author SHA1 Message Date
Oleksandr Chychkan a3f6898f49 Fix 1_clean_workspace.sh script not deleting files in data_src/ 2020-07-06 23:24:48 -07:00
Oleksandr Chychkan c660a1fc92 Make shallow copy of DFL repo to speedup setup process 2020-07-06 23:06:13 -07:00
Oleksandr Chychkan 14cbc4aeff Fix paths in 0_setup.sh script 2020-07-06 23:04:55 -07:00
2 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -6,8 +6,7 @@ mkdir -p workspace
if [ ! -d .dfl/DeepFaceLab ]; then
echo "Cloning DeepFaceLab"
cd .dfl
git clone "https://github.com/iperov/DeepFaceLab.git"
git clone --depth 1 "https://github.com/iperov/DeepFaceLab.git" .dfl/DeepFaceLab
fi
if [ ! -d .dfl/env ]; then
+3 -3
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/*