truffle-box
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -42,3 +42,6 @@ var fs = require("fs-extra"); | ||
if (error) { | ||
return reject(new Error("Error making request. Please check the format of the requested resource: " + options.uri)); | ||
return reject(new Error( | ||
"Error making request to " + options.uri + ". Got error: " + error.message + | ||
". Please check the format of the requested resource." | ||
)); | ||
} else if (r.statusCode == 404) { | ||
@@ -45,0 +48,0 @@ return reject(new Error("Truffle Box at URL " + url + " doesn't exist. If you believe this is an error, please contact Truffle support.")); |
{ | ||
"name": "truffle-box", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Truffle project boilerplate utility", | ||
@@ -5,0 +5,0 @@ "main": "box.js", |
20766
572