mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 00:31:07 -05:00
fix it
This commit is contained in:
parent
af69fc9285
commit
4dd9971b1e
1 changed files with 3 additions and 3 deletions
|
@ -262,9 +262,9 @@ UploadImage()
|
||||||
################
|
################
|
||||||
# Get the data #
|
# Get the data #
|
||||||
################
|
################
|
||||||
REPO=$(echo "$GET_INFO_CMD" | cut -f1 -d' ')
|
REPO=$(echo "$GET_INFO_CMD" | awk '{print $1}')
|
||||||
TAG=$(echo "$GET_INFO_CMD" | cut -f2 -d' ')
|
TAG=$(echo "$GET_INFO_CMD" | awk '{print $2}')
|
||||||
IMAGE_ID=$(echo "$GET_INFO_CMD" | cut -f3 -d' ')
|
IMAGE_ID=$(echo "$GET_INFO_CMD" | awk '{print $3}')
|
||||||
# shellcheck disable=SC2116
|
# shellcheck disable=SC2116
|
||||||
SIZE=$(echo "${GET_INFO_CMD##* }")
|
SIZE=$(echo "${GET_INFO_CMD##* }")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue