a geicko-2 based round robin ranking system designed to test c++ battleship submissions battleship.dunkirk.sh

feat: parse the https out

dunkirk.sh 3eaf361b 473bc95b

verified
Changed files
+5 -1
internal
server
+5 -1
internal/server/auth.go
···
)
func GetServerURL() string {
-
return externalURL
+
// Strip protocol (http://, https://) from URL for SSH commands
+
url := externalURL
+
url = strings.TrimPrefix(url, "https://")
+
url = strings.TrimPrefix(url, "http://")
+
return url
}
func SetConfig(passcode, url string) {