home · contact · privacy
Fix.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 6 May 2025 00:43:34 +0000 (02:43 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 6 May 2025 00:43:34 +0000 (02:43 +0200)
bookworm/scripts/minimize_installation.sh

index 22af1051182bfb9157458f87e625cd86b996ee14..78a61bde6e7faf6b46422ec3ebf85479106bd081 100755 (executable)
@@ -26,11 +26,10 @@ dpkg-query -Wf '${Package} ${Priority}\n' | grep " ${_TOK_REQ}" | cut -d' ' -f1
 sort "${_PATH_LIST_UNSORTED}" > "${_PATH_LIST_WHITE}"
 echo $(cat "${_PATH_LIST_WHITE}")
 
-prefixed_msg_no_nl 'collect installed packages outside this selection'
+prefixed_msg_no_nl 'collect installed packages outside this selection …'
 dpkg-query -Wf '${Package}\n' > "${_PATH_LIST_UNSORTED}"
 sort "${_PATH_LIST_UNSORTED}" > "${_PATH_LIST_ALL_PACKAGES}"
 comm -3 "${_PATH_LIST_ALL_PACKAGES}" "${_PATH_LIST_WHITE}" > "${_PATH_LIST_BLACK}"
-echo $(cat "${_PATH_LIST_BLACK}")
 
 prefixed_msg 'apt-mark auto from diff …'
 apt-mark auto `cat "${_PATH_LIST_BLACK}"` > /dev/null