summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/GeertJohan/go.rice/rice/clean.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/GeertJohan/go.rice/rice/clean.go')
-rw-r--r--vendor/github.com/GeertJohan/go.rice/rice/clean.go33
1 files changed, 0 insertions, 33 deletions
diff --git a/vendor/github.com/GeertJohan/go.rice/rice/clean.go b/vendor/github.com/GeertJohan/go.rice/rice/clean.go
deleted file mode 100644
index 6155c064..00000000
--- a/vendor/github.com/GeertJohan/go.rice/rice/clean.go
+++ /dev/null
@@ -1,33 +0,0 @@
-package main
-
-import (
- "fmt"
- "go/build"
- "os"
- "path/filepath"
- "strings"
-)
-
-func operationClean(pkg *build.Package) {
- filepath.Walk(pkg.Dir, func(filename string, info os.FileInfo, err error) error {
- if err != nil {
- fmt.Printf("error walking pkg dir to clean files: %v\n", err)
- os.Exit(1)
- }
- if info.IsDir() {
- return nil
- }
- verbosef("checking file '%s'\n", filename)
- if filepath.Base(filename) == "rice-box.go" ||
- strings.HasSuffix(filename, ".rice-box.go") ||
- strings.HasSuffix(filename, ".rice-box.syso") {
- err := os.Remove(filename)
- if err != nil {
- fmt.Printf("error removing file (%s): %s\n", filename, err)
- os.Exit(-1)
- }
- verbosef("removed file '%s'\n", filename)
- }
- return nil
- })
-}