From 1d36811dfe72c77d0972fdb550db1f35cf734669 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Thu, 7 Jan 2021 16:44:09 -0700 Subject: [PATCH] Fix v being shown twice on wings boot --- cmd/root.go | 2 +- system/const.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 79b7439..ef7d8c8 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -406,7 +406,7 @@ __ [blue][bold]Pterodactyl[reset] _____/___/_______ _______ ______ \_____\ \/\/ / / / __ / ___/ \___\ / / / / /_/ /___ / \___/\___/___/___/___/___ /______/ - /_______/ [bold]v%s[reset] + /_______/ [bold]%s[reset] Copyright © 2018 - 2021 Dane Everitt & Contributors diff --git a/system/const.go b/system/const.go index 87d87fb..21fe42b 100644 --- a/system/const.go +++ b/system/const.go @@ -2,5 +2,5 @@ package system var ( // The current version of this software. - Version = "0.0.1" + Version = "v0.0.1" )