Skip to content

Commit 021b9bc

Browse files
author
root
committed
Verify judgment information
1 parent 6a8ccdd commit 021b9bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

standalone-deploy/build_standalone_docker.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ cd ${fatepath}
8282
init() {
8383
cp -r arch federatedml workflow examples fate_flow research eggroll ${basepath}
8484
docker run -v ${fatepath}/fateboard:/data/projects/fate/fateboard --entrypoint="" maven:3.6-jdk-8 /bin/bash -c "cd /data/projects/fate/fateboard && mvn clean package -DskipTests"
85-
mkdir -p ${basepath}/fateboard
85+
if [ ! -d "${basepath}/fateboard" ];then
86+
mkdir -p ${basepath}/fateboard
87+
fi
8688
cp ${fatepath}/fateboard/target/fateboard-${version}.jar ${basepath}/fateboard
8789
cd ${basepath}/fateboard
8890
if [ ! -f "fateboard.jar" ];then

0 commit comments

Comments
 (0)