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
|
||||
|
||||
SPEC=$1
|
||||
SYSTEM=$2
|
||||
ARCH=$3
|
||||
SPEC=${INPUT_SPEC}
|
||||
SYSTEM=${INPUT_SYSTEM}
|
||||
ARCH=${INPUT_ARCH}
|
||||
|
||||
SPEC_NAME=$(basename ${SPEC})
|
||||
CONFIGURATION="${SYSTEM}-${ARCH}"
|
||||
|
|
Loading…
Reference in a new issue