diff options
Diffstat (limited to 'fullpkg')
-rwxr-xr-x | fullpkg | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -348,11 +348,10 @@ if [ ${level} -eq 0 ]; then touch "${build_dir}"/{log,BUILDORDER} buildorder="${build_dir}/BUILDORDER" - if ! (( noupdate )); then + if ! noupdate; then -# Always return true - msg "Updating pacman db and packages" - sudo pacman -Syu --noconfirm || true + msg "Updating pacman db" + sudo pacman -Sy --noconfirm || true fi |