Skip to content

Commit e477224

Browse files
author
Your Name
committed
BUGFIX: Dropping browser after finding dsid instead of after closing of openconnect
1 parent 8586e92 commit e477224

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kuvpn"
3-
version = "0.6.5"
3+
version = "0.6.6"
44
edition = "2021"
55

66
[dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# KUVPN v0.6.5
1+
# KUVPN v0.6.6
22

33
KUVPN is a simple Rust cli to retrieve the DSID cookie and execute the OpenConnect command to connect to the VPN for Koç University.
44

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Define the default package (to fix nix run)
2727
packages.default = pkgs.rustPlatform.buildRustPackage {
2828
pname = "kuvpn";
29-
version = "0.6.5";
29+
version = "0.6.6";
3030

3131
src = ./.;
3232

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ COLOR_SUCCESS="\033[0;32m"
99
COLOR_FAILURE="\033[0;31m"
1010
COLOR_RESET="\033[0m"
1111

12-
TAG="v0.6.4"
12+
TAG="v0.6.6"
1313

1414
echo ""
1515
printf "${COLOR_PRIMARY}Installing KUVPN${COLOR_RESET}\n\n"

src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ fn main() -> ExitCode {
125125
}
126126
};
127127

128+
drop(browser);
129+
128130
if args.dsid {
129131
// User only wants the DSID printed out
130132
info!("DSID retrieved: {}", dsid);

0 commit comments

Comments
 (0)