Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Version check URL #258

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/sharg/detail/version_check.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ class version_checker
// build up command for server call
std::string command = program + // no user defined input
" " + out_file.string() + " "
+ std::string{"https://seqan-update.informatik.uni-tuebingen.de/check/SeqAn-Sharg_"} +
+ std::string{"https://seqan-update.cs.uni-tuebingen.de/check/SeqAn-Sharg_"} +
#ifdef __linux
"Linux" +
#elif __APPLE__
Expand Down Expand Up @@ -343,10 +343,10 @@ class version_checker
This app can look for updates automatically in the background,
do you want to do that?

[a] Always perform version checks for this app (the default).
[a] Always perform version checks for this app.
[n] Never perform version checks for this app.
[y] Yes, perform a version check now, and ask again tomorrow.
[s] Skip the version check now, but ask again tomorrow.
[s] Skip the version check now, but ask again tomorrow (the default).

Please enter one of [a, n, y, s] and press [RETURN].

Expand Down
Loading