From c7b6273166511066a5820424490f36625c046efe Mon Sep 17 00:00:00 2001 From: Shane C Date: Thu, 4 Jul 2024 21:58:04 -0400 Subject: [PATCH] remove garbage file --- tes.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 tes.go diff --git a/tes.go b/tes.go deleted file mode 100644 index 7f0fcf4..0000000 --- a/tes.go +++ /dev/null @@ -1,30 +0,0 @@ -package main - -import ( - "errors" - "git.shadowhosting.xyz/Eggactyl/shell/linux" - "log" -) - -func main() { - - cmd, err := linux.NewCommand(linux.CommandOptions{ - Command: "./package", - //Sources: []string{"./nvm.sh"}, - Args: []string{"install"}, - CustomErrors: map[int8]error{ - 1: errors.New("failed to download package"), - }, - //Cwd: "/home//", - //Shell: "/bin/bash", - }) - - if err != nil { - log.Fatal(err) - } - - if err := cmd.Run(); err != nil { - log.Fatal(err) - } - -}