Skip to content
Snippets Groups Projects
update.sh 497 B
Newer Older
#!/bin/bash
. "$GLUONDIR"/scripts/modules.sh

for module in $GLUON_MODULES; do
	echo "--- Updating module '$module' ---"
	var=$(echo $module | tr '[:lower:]/' '[:upper:]_')
	eval repo=\${${var}_REPO}
	eval branch=\${${var}_BRANCH}
	eval commit=\${${var}_COMMIT}
	mkdir -p "$GLUONDIR"/$module
	cd "$GLUONDIR"/$module
	git config commit.gpgsign false
	if ! git branch -f base $commit 2>/dev/null; then
		git fetch $repo $branch
		git branch -f base $commit 2>/dev/null
	fi