mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
6 lines
221 B
Bash
Executable File
6 lines
221 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git pull || exit $?
|
|
# git submodule foreach 'git checkout master'
|
|
git submodule foreach 'if git pull | grep '\''^Updating'\''; then printf " %s" "$(basename $sm_path)" >> $toplevel/build-pkg/pkglist.tmp; fi'
|