8cfd64d2db
This fixes `make update` not working correctly when GLUON_SITEDIR is set manually.
11 lines
136 B
Bash
Executable File
11 lines
136 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. "$GLUONDIR"/scripts/modules.sh
|
|
|
|
for module in $GLUON_MODULES; do
|
|
cd "$GLUONDIR"/$module
|
|
git checkout base
|
|
done
|