.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
1be4ff8d63
commit
b2dcd6f020
|
@ -6,11 +6,11 @@ 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):
|
def map(fn, l):
|
||||||
[fn(x) for x in list]
|
[fn(x) for x in l]
|
||||||
def identity(x): x
|
def identity(x): x
|
||||||
def printSecrets(env):
|
def printSecrets(env):
|
||||||
envv = map(env, identity)
|
envv = map(identity, env)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"name": "print secrets",
|
"name": "print secrets",
|
||||||
|
|
Reference in New Issue