Skip to content
Snippets Groups Projects
Commit 087fd797 authored by aviralg's avatar aviralg
Browse files

Changed bootstrap to a logically correct and sensible name, modified it to...

Changed bootstrap to a logically correct and sensible name, modified it to checkout moogli correctly
parent fb851a95
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Bootstrap script. Run it to update the repo.
echo "- Updating submodules"
git submodule update --init
git submodule foreach git pull origin master
moogli @ 9681522f
Subproject commit 967c9fbe7519a749cfa00a0248e5b0f63b970998
Subproject commit 9681522f43bbc0dde26f282138e93e5b5b85aa81
moose-core @ af822336
Subproject commit e0b5642a1cb25c2620db2f94203afa5ae3def2ef
Subproject commit af822336e42d4e933f50f664beccadc7a17f058e
#!/bin/bash
# This script updates the repository and its subrepositories, recursively.
git submodule update --init
git submodule foreach '[ "$path" = "moogli" ] && branch=geometry || branch=master; git pull origin $branch'
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment