diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-04-02 15:05:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-04-02 15:05:56 +0300 |
commit | 61cc225a9c73c6c92198061a301b12e5a7361bfb (patch) | |
tree | ac2e0d296f71f7fa54ddd332ab26ed10d0068078 | |
parent | 73cdb8a9cdb0f2d0762c2855106ab3f348bbe4fe (diff) | |
download | all-61cc225a9c73c6c92198061a301b12e5a7361bfb.tar.gz all-61cc225a9c73c6c92198061a301b12e5a7361bfb.tar.bz2 all-61cc225a9c73c6c92198061a301b12e5a7361bfb.tar.xz all-61cc225a9c73c6c92198061a301b12e5a7361bfb.zip |
Update init.sh script to new urls.
-rwxr-xr-x | init.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,14 +1,14 @@ #!/bin/bash CMD="$1" -PROTO="git@gitorious.org:" +PROTO="git@gitlab.com:" if [[ -z "${CMD}" ]]; then export CMD="default" fi STR=$(git remote -v|grep "https://") if [[ -n "${STR}" ]]; then - export PROTO="https://gitorious.org/" + export PROTO="https://gitlab.com/" fi if [[ "${CMD}" == "all" || "${CMD}" == "default" ]]; then |