Use default values
This commit is contained in:
parent
75a18ce2d0
commit
44e2d28f1a
|
@ -1,10 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
getInputs() {
|
||||
gpgPrivateKey="$PLUGIN_GPGPRIVATEKEY"
|
||||
gpgPublicKey="$PLUGIN_GPGPUBLICKEY"
|
||||
gpgPassphrase="$PLUGIN_GPGPASSPHRASE"
|
||||
pkgDir="$PLUGIN_PKGDIR"
|
||||
gpgPrivateKey="${PLUGIN_GPGPRIVATEKEY:-}"
|
||||
gpgPublicKey="${PLUGIN_GPGPUBLICKEY:-}"
|
||||
gpgPassphrase="${PLUGIN_GPGPASSPHRASE:-}"
|
||||
pkgDir="${PLUGIN_PKGDIR:-}"
|
||||
}
|
||||
|
||||
addUser() {
|
||||
|
|
Loading…
Reference in New Issue