mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
Close https://github.com/JetBrains/intellij-community/pull/2595 GitOrigin-RevId: 54f2d033492babdbb91daba9e0d2e903062b99e0
8 lines
190 B
Bash
Executable File
8 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "--shallow" ]; then
|
|
git clone git://git.jetbrains.org/idea/android.git android --depth 1
|
|
else
|
|
git clone git://git.jetbrains.org/idea/android.git android
|
|
fi
|