changeset 29006:be02dfe41ae2 stable

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.
author Sean Farley <sean@farley.io>
date Sat, 23 Apr 2016 12:47:39 -0700
parents 51f5fae84e43
children 78074575df2e
files contrib/dockerdeb
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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}