mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
(cherry picked from commit 363ae6f566bea0b993b1a50305b870f33ccf6077) (cherry picked from commitdf0f0fb270) (cherry picked from commit162f3b6ea4)
8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "--shallow" ]; then
|
|
git clone https://git.haulmont.com/platform/open-ide/android.git android --depth 1
|
|
else
|
|
git clone https://git.haulmont.com/platform/open-ide/android.git android
|
|
fi
|