From 16291b141038d0761cf847e5504a15f0ed12fbbe Mon Sep 17 00:00:00 2001 From: bash <31279994+hermensbas@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:57:24 +0200 Subject: [PATCH] Update 0_bashrc.sh --- script/0_bashrc.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/script/0_bashrc.sh b/script/0_bashrc.sh index bddfb59..c57f029 100755 --- a/script/0_bashrc.sh +++ b/script/0_bashrc.sh @@ -39,12 +39,12 @@ echo "export DATAPATH=${DATAPATH}" >> ~/.bash_wow #---------------------------------------------------------------------------------------- # Add alias to ~/.bash_wow #---------------------------------------------------------------------------------------- -echo "alias install='${ROOT_DIR}/1_source-install.sh'" >> ~/.bash_wow -echo "alias update='${ROOT_DIR}/2_source-update.sh'" >> ~/.bash_wow -echo "alias build='${ROOT_DIR}/3_server-build.sh'" >> ~/.bash_wow -echo "alias compile='${ROOT_DIR}/4_server-compile.sh'" >> ~/.bash_wow -echo "alias config='${ROOT_DIR}/5_server-configure.sh'" >> ~/.bash_wow -echo "alias start='${ROOT_DIR}/6_server-start.sh'" >> ~/.bash_wow +echo "alias install='${ROOT_DIR}/script/1_source-install.sh'" >> ~/.bash_wow +echo "alias update='${ROOT_DIR}/script/2_source-update.sh'" >> ~/.bash_wow +echo "alias build='${ROOT_DIR}/script/3_server-build.sh'" >> ~/.bash_wow +echo "alias compile='${ROOT_DIR}/script/4_server-compile.sh'" >> ~/.bash_wow +echo "alias config='${ROOT_DIR}/script/5_server-configure.sh'" >> ~/.bash_wow +echo "alias start='${ROOT_DIR}/script/6_server-start.sh'" >> ~/.bash_wow echo "alias stop='tmux kill-server'" >> ~/.bash_wow echo "alias wow='cd ${ROOT_DIR}/_server/azerothcore;tmux attach -t ${WORLDSERVER_SESSION}'" >> ~/.bash_wow echo "alias auth='cd ${ROOT_DIR}/_server/azerothcore;tmux attach -t ${AUTHSERVER_SESSION}'" >> ~/.bash_wow