aboutsummaryrefslogtreecommitdiff
path: root/repo.sh
diff options
context:
space:
mode:
Diffstat (limited to 'repo.sh')
-rwxr-xr-xrepo.sh4
1 files 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
;;
*)