Mercurial > hg
comparison contrib/dockerdeb @ 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 | 023f47c5ce79 |
children | 78074575df2e |
comparison
equal
deleted
inserted
replaced
29005:51f5fae84e43 | 29006:be02dfe41ae2 |
---|---|
9 checkdocker | 9 checkdocker |
10 | 10 |
11 DISTID="$1" | 11 DISTID="$1" |
12 CODENAME="$2" | 12 CODENAME="$2" |
13 PLATFORM="$1-$2" | 13 PLATFORM="$1-$2" |
14 shift # extra params are passed to build process | 14 shift; shift # extra params are passed to build process |
15 | 15 |
16 OUTPUTDIR=${OUTPUTDIR:=$ROOTDIR/packages/$PLATFORM} | 16 OUTPUTDIR=${OUTPUTDIR:=$ROOTDIR/packages/$PLATFORM} |
17 | 17 |
18 initcontainer $PLATFORM | 18 initcontainer $PLATFORM |
19 | 19 |