From ba2ac7396576c1860d1c437de118581c89c0348f Mon Sep 17 00:00:00 2001 From: Randall Date: Mon, 1 Aug 2022 04:52:09 -0400 Subject: [PATCH] Switched shebang to '#!/usr/bin/env python3' for greater compatibility --- extra/conversion-scripts/sshyp-convert-v1.0.0.py | 2 +- extra/conversion-scripts/sshyp-refresh-1.1.1+.py | 2 +- sshyp-mfa/bin/sshyp-mfa.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extra/conversion-scripts/sshyp-convert-v1.0.0.py b/extra/conversion-scripts/sshyp-convert-v1.0.0.py index 1e0c8ce..4d7b323 100755 --- a/extra/conversion-scripts/sshyp-convert-v1.0.0.py +++ b/extra/conversion-scripts/sshyp-convert-v1.0.0.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 from os import path, remove, system, walk from pathlib import Path diff --git a/extra/conversion-scripts/sshyp-refresh-1.1.1+.py b/extra/conversion-scripts/sshyp-refresh-1.1.1+.py index 673f291..9185671 100755 --- a/extra/conversion-scripts/sshyp-refresh-1.1.1+.py +++ b/extra/conversion-scripts/sshyp-refresh-1.1.1+.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 from os import path, system, uname, walk from pathlib import Path diff --git a/sshyp-mfa/bin/sshyp-mfa.py b/sshyp-mfa/bin/sshyp-mfa.py index 65d7a49..824995e 100755 --- a/sshyp-mfa/bin/sshyp-mfa.py +++ b/sshyp-mfa/bin/sshyp-mfa.py @@ -1,4 +1,4 @@ -#!/bin/python3 +#!/usr/bin/env python3 from base64 import b32decode from hmac import new as new_mac