From fb94e838b9ae0a97f3fc6175cda963fa41d7482f Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Fri, 30 Oct 2020 19:43:38 -0500 Subject: Fix directory --- repo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repo.sh b/repo.sh index eb7db2f..df4c7da 100755 --- a/repo.sh +++ b/repo.sh @@ -25,7 +25,7 @@ case $1 in create_repo $2 dir="$repo_location$2.git" printf "git init\n" - printf "git remote add origin git@marks.kitchen:/srv/git/$dir\n" + printf "git remote add origin git@marks.kitchen:$dir\n" printf "git push origin master\n" ;; list) # list repos on the server @@ -37,7 +37,7 @@ case $1 in ;; clone) # clone a repo from the list dir="$repo_location$2.git" - git clone git@marks.kitchen:/srv/git/$dir + git clone git@marks.kitchen:$repo_location$dir cd $dir ;; *) -- cgit v1.2.3