Skip to content

Commit

Permalink
Undid undoing for bug 65952, fix is in aliencode
Browse files Browse the repository at this point in the history
Author: jgg
Date: 2000-07-31 05:05:54 GMT
Undid undoing for bug 65952, fix is in aliencode
  • Loading branch information
Arch Librarian committed Sep 20, 2004
1 parent b8d8c14 commit dd5811e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ apt (0.3.19) frozen unstable; urgency=low
* Update sizetable for mips. Closes: #62288
* Fixed a bug with passive FTP connections
* Has sizetable entry for sparc64. Closes: #64869
* Undid the fix to bug #55709. Closes: #65952

-- Ben Gertzfield <[email protected]> Fri, 12 May 2000 21:10:54 -0700

Expand Down
8 changes: 7 additions & 1 deletion dselect/install
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ yesno() {
echo $ans | tr YN yn
}

OLDLS=`ls -ld $ARCHIVES`
if [ x$WAIT = "xyes" ]; then
$APTGET $OPTS -d dselect-upgrade
echo "Press enter to continue." && read RES
Expand All @@ -62,6 +63,11 @@ if [ $RES -eq 0 ]; then
exit 0
fi

NEWLS=`ls -ld $ARCHIVES`
if [ "x$OLDLS" = "x$NEWLS" ]; then
exit 0
fi

# Check the cleaning mode
case `echo $CLEAN | tr '[:upper:]' '[:lower:]'` in
auto)
Expand All @@ -72,7 +78,7 @@ if [ $RES -eq 0 ]; then
;;
prompt)
exec 3>&1
if [ `yesno "Do you want to erase any previously downloaded .deb files?" y` = y ]; then
if [ `yesno "Do you want to erase the downloaded .deb files?" y` = y ]; then
$APTGET clean && echo "Press enter to continue." && read RES && exit 0;
fi
;;
Expand Down

0 comments on commit dd5811e

Please sign in to comment.