Skip to content

Commit

Permalink
zk
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 committed Aug 13, 2024
1 parent d52dc59 commit a1833cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions build_tools/pack_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ mkdir -p ${pack}/admin_tools
copy_file ./admin_tools/* ${pack}/admin_tools/
chmod +x ${pack}/admin_tools/*.sh

mkdir -p ${pack}/build_tools
copy_file ./build_tools/download_*.sh ${pack}/build_tools/
copy_file ./build_tools/*_zk.sh ${pack}/build_tools/
chmod +x ${pack}/build_tools/*.sh

mkdir -p ${pack}/src/server
copy_file ./src/server/*.ini ${pack}/src/server/

Expand Down
6 changes: 3 additions & 3 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ function run_start_zk()
fi
fi

INSTALL_DIR="$INSTALL_DIR" PORT="$PORT" $ROOT/admin_tools/start_zk.sh
INSTALL_DIR="$INSTALL_DIR" PORT="$PORT" $ROOT/build_tools/start_zk.sh
}

#####################
Expand Down Expand Up @@ -693,7 +693,7 @@ function run_stop_zk()
esac
shift
done
INSTALL_DIR="$INSTALL_DIR" $ROOT/admin_tools/stop_zk.sh
INSTALL_DIR="$INSTALL_DIR" $ROOT/build_tools/stop_zk.sh
}

#####################
Expand Down Expand Up @@ -730,7 +730,7 @@ function run_clear_zk()
esac
shift
done
INSTALL_DIR="$INSTALL_DIR" $ROOT/admin_tools/clear_zk.sh
INSTALL_DIR="$INSTALL_DIR" $ROOT/build_tools/clear_zk.sh
}

#####################
Expand Down

0 comments on commit a1833cd

Please sign in to comment.