Fix the if statements for checking if env is set.
This commit is contained in:
parent
94a383bea9
commit
ae01a9fd49
@ -1,12 +1,12 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -n ${PHP_VERSION} ]; then
|
if [ -n "${PHP_VERSION}" ]; then
|
||||||
cp env-example .env
|
cp env-example .env
|
||||||
docker-compose build
|
docker-compose build
|
||||||
docker images
|
docker images
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n ${HUGO_VERSION} ]; then
|
if [ -n "${HUGO_VERSION}" ]; then
|
||||||
HUGO_PACKAGE=hugo_${HUGO_VERSION}_Linux-64bit
|
HUGO_PACKAGE=hugo_${HUGO_VERSION}_Linux-64bit
|
||||||
HUGO_BIN=hugo_${HUGO_VERSION}_linux_amd64
|
HUGO_BIN=hugo_${HUGO_VERSION}_linux_amd64
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user