From 61b995f52447edc808bb52d2663185369a5a0af9 Mon Sep 17 00:00:00 2001 From: lasse <77295879+lassejlv@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:42:28 +0100 Subject: [PATCH] remove unused code and add tips --- utils/load.go | 3 +-- utils/printCommands.go | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/load.go b/utils/load.go index 4e7257c..5129b89 100644 --- a/utils/load.go +++ b/utils/load.go @@ -7,8 +7,7 @@ import ( ) var ConfigFileName string = ".actions" -var VersionFileName string = "version.txt" -var CurrentVersion string = "0.1.11" +var CurrentVersion string = "0.1.12" type CommandsArray struct { Name string diff --git a/utils/printCommands.go b/utils/printCommands.go index 74a0c18..4ffa155 100644 --- a/utils/printCommands.go +++ b/utils/printCommands.go @@ -19,6 +19,10 @@ func PrintAvailableCommands() { fmt.Printf("String: %s\n", command.String) + fmt.Println(strings.Repeat("=", 40)) + + fmt.Println("(string means the command to be ran by the command runner)") + fmt.Println(strings.Repeat("-", 40)) } }