mirror of
https://github.com/rclone/rclone
synced 2024-11-16 16:15:34 +01:00
15 lines
243 B
Go
15 lines
243 B
Go
package fs
|
|
|
|
// Version of rclone containing the complete version string
|
|
var Version string
|
|
|
|
func init() {
|
|
if Version == "" {
|
|
if VersionSuffix == "" {
|
|
Version = VersionTag
|
|
} else {
|
|
Version = VersionTag + "-" + VersionSuffix
|
|
}
|
|
}
|
|
}
|