[Pkg-xfce-commits] r5100 - scripts
Yves-Alexis Perez
corsac at alioth.debian.org
Fri Mar 4 04:17:05 UTC 2011
Author: corsac
Date: 2011-03-04 16:17:00 +0000 (Fri, 04 Mar 2011)
New Revision: 5100
Modified:
scripts/get-sources.sh
Log:
replace the pushd/popd call
Modified: scripts/get-sources.sh
===================================================================
--- scripts/get-sources.sh 2011-03-04 15:16:42 UTC (rev 5099)
+++ scripts/get-sources.sh 2011-03-04 16:17:00 UTC (rev 5100)
@@ -22,9 +22,9 @@
echo "Downloading $pkg"
- pushd "$DIR/$pkg" >/dev/null
- uscan --destdir=../tarballs
- popd > /dev/null
+ ( cd "$DIR/$pkg" && \
+ uscan --destdir=../tarballs --download-current-version
+ ) > /dev/null
}
usage()
More information about the Pkg-xfce-commits
mailing list