Skip to content

Commit

Permalink
Revert "Update vpn.sh"
Browse files Browse the repository at this point in the history
This reverts commit b30b9c1.
  • Loading branch information
rmens committed Oct 2, 2023
1 parent b30b9c1 commit 3927f54
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion vpn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
# Start with a clean terminal
clear

curl -f -Ss -o /tmp/functions.sh https://raw.githubusercontent.com/oszuidwest/bash-functions/main/common-functions.sh; then
# Download the functions library
if ! curl -f -Ss -o /tmp/functions.sh https://raw.githubusercontent.com/oszuidwest/bash-functions/main/common-functions.sh; then
echo -e "*** Failed to download functions library. Please check your network connection! ***"
exit 1
fi

# Source the functions file
source /tmp/functions.sh
Expand Down

0 comments on commit 3927f54

Please sign in to comment.