Add build number specifier

This commit is contained in:
computermouth 2016-10-31 13:29:58 -07:00
parent 43ae8f730c
commit 90b95e6d2e
1 changed files with 9 additions and 3 deletions

View File

@ -25,7 +25,7 @@ UBI_PREFIX="chip"
UBI_SUFFIX="ubi.sparse"
UBI_TYPE="400000-4000"
while getopts "sgpbhB:" opt; do
while getopts "sgpbhB:N:" opt; do
case $opt in
s)
echo "== Server selected =="
@ -47,6 +47,10 @@ while getopts "sgpbhB:" opt; do
BRANCH="$OPTARG"
echo "== ${BRANCH} branch selected =="
;;
N)
CACHENUM="$OPTARG"
echo "== Build number ${CACHENUM} selected =="
;;
h)
echo ""
echo "== help =="
@ -75,7 +79,9 @@ function require_directory {
function dl_probe {
if [ -z $CACHENUM ]; then
CACHENUM=$(curl -s $DL_URL/$BRANCH/$FLAVOR/latest)
fi
if [[ ! -d "$DL_DIR/$BRANCH-$FLAVOR-b${CACHENUM}" ]]; then
echo "== New image available =="