mirror of https://github.com/lukechilds/Agama.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
15 lines
398 B
8 years ago
|
#!/bin/bash
|
||
|
### Script will check EasyDEX-GUI submodule in gui folder.
|
||
|
### If you used git clone without --recursive option this is way to go.
|
||
|
|
||
|
PWD=`pwd`
|
||
|
SIZE=`du -sk gui/EasyDEX-GUI`
|
||
|
|
||
|
echo "Checking EasyDEX-GUI folder."
|
||
|
cd gui/EasyDEX-GUI && \
|
||
|
git submodule update --init --recursive && \
|
||
|
cd ../.. && \
|
||
|
echo "Folder looks fine." || \
|
||
|
echo "Some problem with cloning submodule EasyDEX-GUI."
|
||
|
echo
|