gluon/scripts/unpatch.sh
Matthias Schiffer 8cfd64d2db Make module scripts use GLUONDIR and GLUON_SITEDIR
This fixes `make update` not working correctly when GLUON_SITEDIR is set
manually.
2015-01-11 09:48:31 +01:00

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