build script: shellcheck fixes
This commit is contained in:
parent
1f4bc2892a
commit
18ca288fd6
1 changed files with 5 additions and 5 deletions
|
@ -7,14 +7,14 @@ BUILD_TAG="fedora-${BASE_TAG}-${NOW}"
|
|||
IMAGE_FILE="steamcmd-${BUILD_TAG}.img"
|
||||
|
||||
echo "Building image steamcmd:${BUILD_TAG}"
|
||||
podman build --tag steamcmd:${BUILD_TAG} .
|
||||
podman save localhost/steamcmd:${BUILD_TAG} > ${IMAGE_FILE}
|
||||
podman build --tag steamcmd:"${BUILD_TAG}" .
|
||||
podman save localhost/steamcmd:"${BUILD_TAG}" > "${IMAGE_FILE}"
|
||||
echo ""
|
||||
echo "Wrote ${IMAGE_FILE}, cleaning up"
|
||||
podman rmi steamcmd:${BUILD_TAG}
|
||||
podman rmi steamcmd:"${BUILD_TAG}"
|
||||
echo ""
|
||||
echo "Attempting to compress the image (begin comforting music)"
|
||||
xz --keep --compress -9 --extreme --threads=$(nproc) ${IMAGE_FILE}
|
||||
xz --keep --compress -9 --extreme --threads="$(nproc)" "${IMAGE_FILE}"
|
||||
echo ""
|
||||
echo "Finished, (non)compressed images created:"
|
||||
ls --color=auto -lah ${IMAGE_FILE}*
|
||||
ls --color=auto -lah "${IMAGE_FILE}"*
|
||||
|
|
Loading…
Reference in a new issue