9 lines
215 B
Plaintext
9 lines
215 B
Plaintext
|
#!/bin/bash
|
||
|
PATH_BUILD=$1
|
||
|
PATH_DEB=$2
|
||
|
GIT_VERSION=$3
|
||
|
|
||
|
cp ${PATH_BUILD}/tmp/gotify/dist/gotify ${PATH_DEB}/usr/bin/gotify
|
||
|
cp ${PATH_BUILD}/tmp/authelia/config.template.yml ${PATH_DEB}/etc/authelia/configuration.yml
|
||
|
|