Skip to content

Commit

Permalink
bugfix fetch secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnwai committed Jul 23, 2024
1 parent 8662921 commit 3901b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SSClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def _replace_local_secrets(username: str, password: str,

with BytesIO(response.content) as zip_buffer:
with ZipFile(zip_buffer, 'r') as zip_ref:
zip_ref.extractall(env_dir)
zip_ref.extractall()

os.symlink(env_dir, "Secrets", target_is_directory=True)
return
Expand Down

0 comments on commit 3901b63

Please sign in to comment.