dockerdeb: fix incorrect number of shifts stable
authorSean Farley <sean@farley.io>
Sat, 23 Apr 2016 12:47:39 -0700
branchstable
changeset 29006 be02dfe41ae2
parent 29005 51f5fae84e43
child 29007 78074575df2e
dockerdeb: fix incorrect number of shifts From the comment, it appears that the original intent was to remove the first two arguments, so this patch does just that.
contrib/dockerdeb
--- a/contrib/dockerdeb	Thu Apr 21 10:11:20 2016 -0400
+++ b/contrib/dockerdeb	Sat Apr 23 12:47:39 2016 -0700
@@ -11,7 +11,7 @@
 DISTID="$1"
 CODENAME="$2"
 PLATFORM="$1-$2"
-shift # extra params are passed to build process
+shift; shift # extra params are passed to build process
 
 OUTPUTDIR=${OUTPUTDIR:=$ROOTDIR/packages/$PLATFORM}