Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7 from CirrusMD/feature/bypass_onepass
Browse files Browse the repository at this point in the history
added onepass bypass jailbreak
  • Loading branch information
ryanjfrizzell authored Oct 1, 2021
2 parents 10f6397 + 7c36e77 commit 701fbb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aws_jumpcloud/onepassword.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

def installed():
hasop = which("op") is not None and which("op") is not True
disableop = os.getenv("AWS_JUMPCLOUD_DISABLE_OP") == "true"
if disableop:
hasop = False
if hasop:
if os.getenv("OP_SUBDOMAIN") and subprocess.call(
"op get account", shell=True
Expand Down
2 changes: 1 addition & 1 deletion aws_jumpcloud/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "2.1.12"
__VERSION__ = "2.1.13"

0 comments on commit 701fbb3

Please sign in to comment.