mirror of
https://github.com/status-im/status-go.git
synced 2025-02-07 20:34:27 +00:00
* Commit initial change for settimeout/setinterval * Add initial tests for jail setTimeout/setInterval * Add ottoext dependency * Add fetch jail test with function * Add dependencies of fetch from ottoext * Refactor with regards to PR review * Refactor with regards to PR review * Fix syntax errors * Fix missing return statement
34 lines
740 B
Go
34 lines
740 B
Go
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
|
|
})
|
|
}
|