FS#4056 - abs script error

Attached to Project: Arch Linux
Opened by Michael Towers (gradgrind) - Friday, 24 February 2006, 15:21 GMT
Last edited by Roman Kyrylych (Romashka) - Saturday, 11 November 2006, 19:57 GMT
Task Type Bug Report
Category Packages: Current
Status Closed
Assigned To Aaron Griffin (phrakture)
Architecture not specified
Severity High
Priority Normal
Reported Version 0.7.1 Noodle
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

The bit in 'abs' which filters out the '-p' option is 1) doubled, 2) wrong.
Result: giving repo parameters doesn't work!

Correction:
###if [ "$1" = "-p" ] || [ "$1" = "--passive" ]; then
### CONNMODE="-"
### shift
###else
### CONNMODE="m"
### shift
###fi

if [ "$1" = "-p" ] || [ "$1" = "--passive" ]; then
CONNMODE="-"
shift
else
CONNMODE="m"
### shift
fi
This task depends upon

Closed by  Aaron Griffin (phrakture)
Friday, 22 December 2006, 00:47 GMT
Reason for closing:  Fixed

Loading...