chore: fix shell scripts lint errors
This commit is contained in:
parent
5c919989ea
commit
d47fef0806
23 changed files with 359 additions and 228 deletions
|
|
@ -1,8 +1,11 @@
|
|||
#!/bin/bash -eux
|
||||
#!/bin/sh
|
||||
|
||||
set -eux
|
||||
|
||||
envsubst "`env | awk -F = '{printf \" $$%s\", $$1}'`" \
|
||||
envsubst "$(env | awk -F = '{printf \" $$%s\", $$1}')" \
|
||||
< /etc/nginx/nginx.conf.template \
|
||||
> /etc/nginx/nginx.conf \
|
||||
&& cat /etc/nginx/nginx.conf \
|
||||
&& nginx-debug -g 'daemon off;'
|
||||
> /etc/nginx/nginx.conf
|
||||
|
||||
cat /etc/nginx/nginx.conf
|
||||
|
||||
nginx-debug -g 'daemon off;'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue