From 139270b56524e4c165b88c1e4566cd186a2d3b51 Mon Sep 17 00:00:00 2001 From: Harry <14015057+HarryVasanth@users.noreply.github.com> Date: Mon, 5 Dec 2022 11:34:41 +0000 Subject: [PATCH] fix(deploy): server directory path --- sh/debian/configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/debian/configure.sh b/sh/debian/configure.sh index ac226092b..8acccc4b3 100755 --- a/sh/debian/configure.sh +++ b/sh/debian/configure.sh @@ -289,7 +289,7 @@ function clonePlatform() { echo "Enter the target directory for the platform $(tput setaf 2)[System: $(pwd)/$(hostname)]$(tput sgr0):" read serverDir git clone git@github.com:01-edu/all.git $serverDir - cd /$serverDir + cd $serverDir # Generate platform environment file automatically ./generate_env.sh --gen }