diff options
-rwxr-xr-x | Xcode/get.sh | 4 | ||||
-rwxr-xr-x | Xcode/gethttps.sh | 4 | ||||
-rwxr-xr-x | packaging/OSX/get.sh | 4 | ||||
-rwxr-xr-x | packaging/OSX/gethttps.sh | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Xcode/get.sh b/Xcode/get.sh deleted file mode 100755 index 583b72c03..000000000 --- a/Xcode/get.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -# if have account in gitlab.com -git clone git@gitlab.com:manaplus/manaplus-xcode.git . diff --git a/Xcode/gethttps.sh b/Xcode/gethttps.sh deleted file mode 100755 index b852bf11e..000000000 --- a/Xcode/gethttps.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -# if not have account in gitlab.com -git clone https://gitlab.com/manaplus/manaplus-xcode.git . diff --git a/packaging/OSX/get.sh b/packaging/OSX/get.sh new file mode 100755 index 000000000..bfaee6b61 --- /dev/null +++ b/packaging/OSX/get.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# if have account in gitlab.com +git clone git@gitlab.com:manaplus/manaplus-xcode.git ../../Xcode diff --git a/packaging/OSX/gethttps.sh b/packaging/OSX/gethttps.sh new file mode 100755 index 000000000..549555e7a --- /dev/null +++ b/packaging/OSX/gethttps.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# if not have account in gitlab.com +git clone https://gitlab.com/manaplus/manaplus-xcode.git ../../Xcode |