Several changes to clients
All checks were successful
/ pre-commit (push) Successful in 1m40s

coller:
- Add FILENAME as positioned argument (fixes #18)
- Add -html argument to show the URL of the webpage

copier:
- Rename -w to -ask-password

both:
- Rename -b to -ask-bearer

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2025-08-28 12:44:36 +02:00
commit d43c645039
Signed by: jriou
GPG key ID: 9A099EDA51316854
3 changed files with 35 additions and 10 deletions

View file

@ -38,7 +38,7 @@ func Version(appName, appVersion, gitCommit, goVersion string) string {
version += "-" + gitCommit
}
if goVersion != "" {
version += " (compiled with Go " + goVersion + ")"
version += " (compiled with " + goVersion + ")"
}
return version
}