summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-06 22:20:20 +0100
committerDan McGee <dan@archlinux.org>2007-02-06 22:20:20 +0100
commitb03a2388a321fb4c903e3771e49de84bc373047f (patch)
tree40dba62e20989f8a49a7c27ec4c57301f732ed60 /scripts
parent79c277a218308d3f11c0852b6feb967923e15587 (diff)
downloadpacman-b03a2388a321fb4c903e3771e49de84bc373047f.tar.gz
pacman-b03a2388a321fb4c903e3771e49de84bc373047f.tar.xz
I should test code before I check it in. Also a fix for the annoying wget output in PKGBUILD bug.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makepkg6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index 50e52b1d..dc186d2a 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -633,7 +633,7 @@ for netfile in ${source[@]}; do
exit 1
fi
msg2 "Downloading $file"
- $FTPAGENT "$netfile" 2>&1
+ $FTPAGENT "$netfile"
# fix flyspray bug #3289
ftpret=$?
if [ $ftpret -gt 0 ]; then
@@ -750,8 +750,8 @@ else
# START REMOVE
# TODO remove this with release of file v4.20, temp bugfix
*application/empty*)
- cmd="tar -xf $file" ;;
- warning "file had trouble detecting type, assuming tar"
+ cmd="tar -xf $file"
+ warning "file had trouble detecting type, assuming tar" ;;
# END REMOVE
*application/x-tar*)
cmd="tar -xf $file" ;;