1
0

Do no use check, as we want to check it outselves
All checks were successful
Test Python / Test (push) Successful in 23s

This commit is contained in:
Jon Michael Aanes 2024-07-25 00:37:01 +02:00
parent c385e17d45
commit 6b6832952f
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA

View File

@ -194,7 +194,7 @@ class SecretLoader:
return None return None
cmd = ['pass', 'show', f'{self.pass_folder}/{secret_name.lower()}'] cmd = ['pass', 'show', f'{self.pass_folder}/{secret_name.lower()}']
process = subprocess.run(cmd, capture_output=True, check=True) process = subprocess.run(cmd, capture_output=True, check=False)
if process.returncode: if process.returncode:
return None return None