diff --git a/helpers.go b/helpers.go deleted file mode 100644 index f1babb5..0000000 --- a/helpers.go +++ /dev/null @@ -1,14 +0,0 @@ -package main - -import "os" - -func tempChdir(directory string) string { - wd, _ := os.Getwd() - os.Chdir(directory) - return wd - -} - -func fixWD(directory string) { - os.Chdir(directory) -}