Skip to content

Commit

Permalink
Revert (#61)
Browse files Browse the repository at this point in the history
Secrets unpacking works as expected, revert (#61)
  • Loading branch information
quinnwai authored Jul 31, 2024
1 parent 8ca2ff7 commit f950cfa
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()
zip_ref.extractall(env_dir)

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

0 comments on commit f950cfa

Please sign in to comment.