Skip to content

Commit

Permalink
Disable previously enabled command logging in #582
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Nov 19, 2024
1 parent 6cac4b6 commit 68c5cdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/bash_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ collect_dependencies() {
old_or_new=$1
pkgtype=$2
bb_log_info "Collecting dependencies for the ${old_or_new} server"
# set +x
set +x
for p in ${package_list} ${spider_package_list} ; do
if [[ "$p" =~ columnstore ]] ; then
suffix="columnstore"
Expand All @@ -650,7 +650,7 @@ collect_dependencies() {
else
# We need sudo here for the apt-cache command, not for redirection
# shellcheck disable=SC2024
sudo apt-cache depends "$p" --no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances | sort >> "./reqs-${suffix}.${old_or_new}"
sudo apt-cache depends "$p" --no-suggests --no-conflicts --no-breaks --no-replaces --no-enhances | sort >> "./reqs-${suffix}.${old_or_new}"
fi

# Collect LDD output for files installed by the package on the system
Expand All @@ -673,5 +673,5 @@ collect_dependencies() {
done
fi
done
# set -x
set -x
}

0 comments on commit 68c5cdb

Please sign in to comment.