From 4d83a20a6084eaf2392536836ec44313c134a948 Mon Sep 17 00:00:00 2001 From: Nikita Iarychenko Date: Wed, 11 Dec 2024 10:50:56 +0400 Subject: [PATCH] OPENIDE #60 Fork android repository (cherry picked from commit 363ae6f566bea0b993b1a50305b870f33ccf6077) (cherry picked from commit df0f0fb270ac259cb9cb75cb0e01efaf3ef46b94) (cherry picked from commit 162f3b6ea41bc5b011903225a84e751095168fc3) (cherry picked from commit 2a8b659f8d42c11233c0f842cd7c3f914446d203) --- getPlugins.bat | 4 ++-- getPlugins.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/getPlugins.bat b/getPlugins.bat index 427bccd71b89..d7af9aad57d5 100644 --- a/getPlugins.bat +++ b/getPlugins.bat @@ -2,7 +2,7 @@ :ParseArgs if "%~1" == "--shallow" ( - call git clone git://git.jetbrains.org/idea/android.git android --depth 1 + call git clone https://git.haulmont.com/platform/open-ide/android.git android --depth 1 ) else ( - call git clone git://git.jetbrains.org/idea/android.git android + call git clone https://git.haulmont.com/platform/open-ide/android.git android ) diff --git a/getPlugins.sh b/getPlugins.sh index f0ff2229f68f..8e9f9297bf87 100755 --- a/getPlugins.sh +++ b/getPlugins.sh @@ -1,7 +1,7 @@ #!/bin/bash if [ "$1" == "--shallow" ]; then - git clone git://git.jetbrains.org/idea/android.git android --depth 1 + git clone https://git.haulmont.com/platform/open-ide/android.git android --depth 1 else - git clone git://git.jetbrains.org/idea/android.git android + git clone https://git.haulmont.com/platform/open-ide/android.git android fi