Skip to content

Commit e7b06a8

Browse files
committed
simple fix to update
1 parent 18dac3c commit e7b06a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

usr/share/biglinux/bigstore-cli/pactrans.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ pacinstall_output=$($pacinstall_cmd --print-only --dbsync --yolo --overwrite $us
138138

139139
if [ -z "$pacinstall_output" ]; then
140140
echo "Verifying package replacements..."
141-
pacinstall_output=$($pacinstall_cmd --print-only --dbsync --yolo --overwrite $sysupgrade $install_pkgs $remove_pkgs 2>&1 | grep -v 'is newer than' | tee /var/log/pacman-log-complete.pactrans | jq -Rn -f jq/pactrans.jq | tee /var/log/pacman.json)
141+
use_resolve_replacements='--resolve-replacements=all'
142+
pacinstall_output=$($pacinstall_cmd --print-only --dbsync --yolo --overwrite $use_resolve_replacements $sysupgrade $install_pkgs $remove_pkgs 2>&1 | grep -v 'is newer than' | tee /var/log/pacman-log-complete.pactrans | jq -Rn -f jq/pactrans.jq | tee /var/log/pacman.json)
142143
fi
143144

144145
if [ -z "$pacinstall_output" ]; then

0 commit comments

Comments
 (0)