Skip to content

Commit c54c8d4

Browse files
committed
Make wget ignore github cert
1 parent aa16a39 commit c54c8d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if [ ! -d vendor/jsPDF ]; then
2-
wget -O jsPDF.zip https://github.com/MrRio/jsPDF/archive/master.zip
2+
wget --no-check-certificate -O jsPDF.zip https://github.com/MrRio/jsPDF/archive/master.zip
33
unzip jsPDF.zip
44
mkdir vendor
55
mv jsPDF-master vendor/jsPDF

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-jspdf",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Use jsPDF in your node apps.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)