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.
14 lines
391 B
14 lines
391 B
#!/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 --recursive && \
|
|
cd ../.. && \
|
|
echo "Folder looks fine." || \
|
|
echo "Some problem with cloning submodule EasyDEX-GUI."
|
|
echo
|
|
|