.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
90e661800f
commit
7e95348e7a
|
@ -7,8 +7,8 @@ def environment(env):
|
||||||
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
|
[(x.replace("-", "_").upper(), fromSecret(x)) for x in env]
|
||||||
)
|
)
|
||||||
def map(fn, l):
|
def map(fn, l):
|
||||||
[fn(x) for x in l]
|
return [fn(x) for x in l]
|
||||||
def identity(x): x
|
def identity(x): return x
|
||||||
def printSecrets(env):
|
def printSecrets(env):
|
||||||
envv = map(identity, env)
|
envv = map(identity, env)
|
||||||
|
|
||||||
|
|
Reference in New Issue