mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
Daniel Langbein
85163477df
build process: - never run "pacman -Sy" as pacman does not support partial upgrades, instead use "pacman -Syu" - after each build-stage: run "docker build" with cache disabled to make sure the build step "pacman -Syu" is run
6 lines
251 B
Bash
Executable File
6 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
git pull || exit $?
|
|
git submodule foreach 'git checkout master || git checkout main' || exit $?
|
|
git submodule foreach 'if git pull | grep '\''^Updating'\''; then printf " %s" "$(basename $sm_path)" >> $toplevel/build-pkg/pkglist.tmp; fi'
|