You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
BASE_DIR="$PWD"
|
|
|
|
# load configure
|
|
. ./config.sh
|
|
|
|
# remove dirs
|
|
set -x
|
|
|
|
rm -rf "$OUTPUT_DIR"
|
|
rm -rf "$LIBS_DIR"
|
|
rm -rf "$MODELS_DIR"
|
|
rm -rf "$BASE_DIR/build"
|
|
|
|
"$BASE_DIR/src/TTSCppFrontend/clean.sh"
|
|
|
|
# 符号连接
|
|
rm "$BASE_DIR/dict"
|