.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
673e5f3926
commit
1be4ff8d63
|
@ -6,6 +6,8 @@ def environment(env):
|
||||||
return dict(
|
return dict(
|
||||||
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
|
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
|
||||||
)
|
)
|
||||||
|
def map(fn, list):
|
||||||
|
[fn(x) for x in list]
|
||||||
def identity(x): x
|
def identity(x): x
|
||||||
def printSecrets(env):
|
def printSecrets(env):
|
||||||
envv = map(env, identity)
|
envv = map(env, identity)
|
||||||
|
|
Reference in New Issue