mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
12 lines
184 B
Bash
Executable file
12 lines
184 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
function initDefault {
|
|
git submodule init
|
|
git submodule update
|
|
}
|
|
|
|
echo "Creating development environment setup..."
|
|
initDefault
|
|
echo "...setup complete."
|
|
|
|
exit
|