Comment 0 for bug 110617

Revision history for this message
xcxcx112 (xcxcx112) wrote :

Binary package hint: gsynaptics

i found a small bug but annoying one when docent of scripts have to edit by hand again. Hope u will fix it soon, thanks

Steps to reproduce the bug:

1) Open Synaptic
2) Chose package to install in the main window
3) Click on File > "Generate package download script" > save it to Desktop

Wrong command found In the Script (example package):

#!/bin/sh
wget -chttp://archive.ubuntu.com/ubuntu/pool/main/g/gpgme1.0/libgpgme11_1.1.2-2ubuntu2_i386.deb
wget -chttp://archive.ubuntu.com/ubuntu/pool/universe/s/seahorse/seahorse_1.0.1-0ubuntu1_i386.deb

Correct should be:

#!/bin/sh
wget -c http://archive.ubuntu.com/ubuntu/pool/main/g/gpgme1.0/libgpgme11_1.1.2-2ubuntu2_i386.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/s/seahorse/seahorse_1.0.1-0ubuntu1_i386.deb