Merge pull request #67 from w-okada/dev

update
This commit is contained in:
w-okada 2022-10-03 00:25:49 +09:00 committed by GitHub
commit ef757993c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
set -eu
DOCKER_IMAGE=dannadori/voice-changer:20221003_001311
DOCKER_IMAGE=dannadori/voice-changer:20221003_002318
#DOCKER_IMAGE=voice-changer

View File

@ -23,6 +23,8 @@ if [ "${MODE}" = "SOFT_VC" ] ; then
cp -r /resources/* .
if [[ -e ./setting.json ]]; then
cp ./setting.json ../frontend/dist/assets/setting.json
else
cp ../frontend/dist/assets/setting_softvc.json ../frontend/dist/assets/setting.json
fi
if [ "${VERBOSE}" = "on" ]; then
echo "SOFT_VCを起動します(verbose)"
@ -37,6 +39,8 @@ elif [ "${MODE}" = "MMVC" ] ; then
cp -r /resources/* .
if [[ -e ./setting.json ]]; then
cp ./setting.json ../frontend/dist/assets/setting.json
else
cp ../frontend/dist/assets/setting_mmvc.json ../frontend/dist/assets/setting.json
fi
if [ "${VERBOSE}" = "on" ]; then