We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9de51d commit d4f201aCopy full SHA for d4f201a
tests/gopherjsvendored_test.sh
@@ -37,6 +37,11 @@ func main() {
37
for pkg in $(go list -f '{{if not .Goroot}}{{.ImportPath}}{{end}}' $(go list -f '{{.ImportPath}} {{join .Deps " "}}' github.com/gopherjs/gopherjs)); do
38
copyGoPackage "$pkg" "$tmp/src/example.org/hello/vendor/$pkg"
39
done
40
+# Two special cases
41
+for pkg in "github.com/gopherjs/gopherjs/js" "github.com/gopherjs/gopherjs/nosync"; do
42
+ copyGoPackage "$pkg" "$tmp/src/example.org/hello/vendor/$pkg"
43
+done
44
+
45
cp -r "$(go list -f '{{.Dir}}' 'github.com/gopherjs/gopherjs/compiler/natives')/src" \
46
"$tmp/src/example.org/hello/vendor/github.com/gopherjs/gopherjs/compiler/natives/src"
47
0 commit comments