Skip to content
Snippets Groups Projects
Forked from SoCLabs / Accelerator Project
285 commits behind the upstream repository.
soc-pull 257 B
#!/bin/bash

# Update all Submodules to latest commit
cd $DESIGN_ROOT; git submodule foreach --recursive git pull
# for d in $DESIGN_ROOT/* ; do
#     if [ -f "$d/.git" ]; then
#         echo "Git Pulling $d"
#         cd $d; git pull; cd ..
#     fi
# done