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) - } - -}