All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
8 lines
124 B
Bash
Executable File
8 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
HTPASSWD=/etc/nginx/htpasswd
|
|
touch $HTPASSWD
|
|
|
|
if [ "$GOATBIN_USER" ]; then
|
|
echo $GOATBIN_USER >> $HTPASSWD
|
|
fi
|