Skip to content
This repository was archived by the owner on Nov 2, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"