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
|