Use ${INPUT_*} variables instead of indexed ones
This commit is contained in:
parent
ffc01c9d57
commit
b1d2e9811b
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
SPEC=$1
|
SPEC=${INPUT_SPEC}
|
||||||
SYSTEM=$2
|
SYSTEM=${INPUT_SYSTEM}
|
||||||
ARCH=$3
|
ARCH=${INPUT_ARCH}
|
||||||
|
|
||||||
SPEC_NAME=$(basename ${SPEC})
|
SPEC_NAME=$(basename ${SPEC})
|
||||||
CONFIGURATION="${SYSTEM}-${ARCH}"
|
CONFIGURATION="${SYSTEM}-${ARCH}"
|
||||||
|
|
Loading…
Reference in a new issue