mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-12 22:11:27 +07:00
8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "--shallow" ]; then
|
|
git clone https://gitflic.ru/project/openide/android.git android --depth 1
|
|
else
|
|
git clone https://gitflic.ru/project/openide/android.git android
|
|
fi
|