Skip to content

Commit

Permalink
Create new release
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Sep 28, 2024
1 parent aadb193 commit 7509ec5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ssh_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import time
import platform

VERSION = '1.0.3219.78'
VERSION = '1.0.3231.6'
SSH_DIR = '~/.ssh'
CONF_PATH = SSH_DIR + '/pritunl-zero.json'
BASH_PROFILE_PATH = '~/.bash_profile'
Expand Down Expand Up @@ -61,17 +61,17 @@ def open_browser(url):
)
except:
try:
if microsoft_wsl or platform.system() == 'Windows':
if platform.system() == 'Windows' or microsoft_wsl:
subprocess.Popen(['powershell.exe', '/c', 'start', url])
elif platform.system() == "Darwin":
subprocess.Popen(['open', url])
elif platform.system() == "Linux":
subprocess.Popen(['sensible-browser', url])
else:
print("unsupported platform: " + platform.system())
print("Unsupported platform: " + platform.system())
sys.exit(1)
except:
print("unable to open browser, please open the url manually")
print("Failed to open browser, open the url manually")
pass


Expand Down
2 changes: 1 addition & 1 deletion ssh_host_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
except:
HAS_BOTO = False

VERSION = '1.0.3219.78'
VERSION = '1.0.3231.6'
CONF_PATH = '/etc/pritunl-ssh-host.json'
DEF_SSH_CONF_PATH = '/etc/ssh/sshd_config'
DEF_PUB_KEY_CONF_PATH = '/etc/ssh/ssh_host_rsa_key.pub'
Expand Down

0 comments on commit 7509ec5

Please sign in to comment.