Skip to content

Commit 88daf49

Browse files
committed
update.sh: split gopherjs install into multiple lines
1 parent 9081c6a commit 88daf49

File tree

1 file changed

+99
-1
lines changed

1 file changed

+99
-1
lines changed

playground/update.sh

Lines changed: 99 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,105 @@ cp $GOPATH/pkg/darwin_js_min/github.com/gopherjs/gopherjs/nosync.a $PKG/github.c
2929
# use it to build and copy out standard library packages.
3030
cp -r $(go env GOROOT) /tmp/gopherjsplayground_goroot
3131
export GOROOT=/tmp/gopherjsplayground_goroot
32-
gopherjs install -m archive/tar archive/zip bufio bytes compress/bzip2 compress/flate compress/gzip compress/lzw compress/zlib container/heap container/list container/ring crypto/aes crypto/cipher crypto/des crypto/dsa crypto/ecdsa crypto/elliptic crypto/hmac crypto/md5 crypto/rand crypto/rc4 crypto/rsa crypto/sha1 crypto/sha256 crypto/sha512 crypto/subtle database/sql/driver debug/gosym debug/pe encoding/ascii85 encoding/asn1 encoding/base32 encoding/base64 encoding/binary encoding/csv encoding/gob encoding/hex encoding/json encoding/pem encoding/xml errors fmt go/ast go/doc go/format go/printer go/token hash/adler32 hash/crc32 hash/crc64 hash/fnv html html/template image image/color image/draw image/gif image/jpeg image/png index/suffixarray io io/ioutil math math/big math/cmplx math/rand mime net/http/cookiejar net/http/fcgi net/http/httptest net/http/httputil net/mail net/smtp net/textproto net/url path path/filepath reflect regexp regexp/syntax runtime/internal/sys sort strconv strings sync/atomic testing testing/iotest testing/quick text/scanner text/tabwriter text/template text/template/parse time unicode unicode/utf16 unicode/utf8
32+
gopherjs install -m \
33+
archive/tar \
34+
archive/zip \
35+
bufio \
36+
bytes \
37+
compress/bzip2 \
38+
compress/flate \
39+
compress/gzip \
40+
compress/lzw \
41+
compress/zlib \
42+
container/heap \
43+
container/list \
44+
container/ring \
45+
crypto/aes \
46+
crypto/cipher \
47+
crypto/des \
48+
crypto/dsa \
49+
crypto/ecdsa \
50+
crypto/elliptic \
51+
crypto/hmac \
52+
crypto/md5 \
53+
crypto/rand \
54+
crypto/rc4 \
55+
crypto/rsa \
56+
crypto/sha1 \
57+
crypto/sha256 \
58+
crypto/sha512 \
59+
crypto/subtle \
60+
database/sql/driver \
61+
debug/gosym \
62+
debug/pe \
63+
encoding/ascii85 \
64+
encoding/asn1 \
65+
encoding/base32 \
66+
encoding/base64 \
67+
encoding/binary \
68+
encoding/csv \
69+
encoding/gob \
70+
encoding/hex \
71+
encoding/json \
72+
encoding/pem \
73+
encoding/xml \
74+
errors \
75+
fmt \
76+
go/ast \
77+
go/doc \
78+
go/format \
79+
go/printer \
80+
go/token \
81+
hash/adler32 \
82+
hash/crc32 \
83+
hash/crc64 \
84+
hash/fnv \
85+
html \
86+
html/template \
87+
image \
88+
image/color \
89+
image/draw \
90+
image/gif \
91+
image/jpeg \
92+
image/png \
93+
index/suffixarray \
94+
io \
95+
io/ioutil \
96+
math \
97+
math/big \
98+
math/cmplx \
99+
math/rand \
100+
mime \
101+
net/http/cookiejar \
102+
net/http/fcgi \
103+
net/http/httptest \
104+
net/http/httputil \
105+
net/mail \
106+
net/smtp \
107+
net/textproto \
108+
net/url \
109+
path \
110+
path/filepath \
111+
reflect \
112+
regexp \
113+
regexp/syntax \
114+
runtime/internal/sys \
115+
sort \
116+
strconv \
117+
strings \
118+
sync/atomic \
119+
testing \
120+
testing/iotest \
121+
testing/quick \
122+
text/scanner \
123+
text/tabwriter \
124+
text/template \
125+
text/template/parse \
126+
time \
127+
unicode \
128+
unicode/utf16 \
129+
unicode/utf8
130+
33131
cp -r $GOROOT/pkg/darwin_js_min/* $PKG
34132
cp -r $GOROOT/pkg/darwin_amd64_js_min/* $PKG
35133

0 commit comments

Comments
 (0)