Use -O option to wget when fetching zxcvbn

Otherwise the downloaded zxcvbn.js also includes garbage we don't want
This commit is contained in:
Leo Franchi 2015-09-25 15:19:43 -07:00
parent aeb6a5df7c
commit 974a9bd0f3
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh -ex #!/bin/sh -ex
mkdir -p static/third/zxcvbn/ mkdir -p static/third/zxcvbn/
wget https://raw.githubusercontent.com/dropbox/zxcvbn/0890678ede1488ecb02cda7eb793cd308a59c49d/zxcvbn.js -o static/third/zxcvbn/zxcvbn.js wget https://raw.githubusercontent.com/dropbox/zxcvbn/0890678ede1488ecb02cda7eb793cd308a59c49d/zxcvbn.js -O static/third/zxcvbn/zxcvbn.js