Comparing version 0.1.1 to 0.1.2
@@ -41,3 +41,6 @@ /** | ||
[choose(source), source, first, Object.create(opts)] // compile the app using the buildpack | ||
], fn); | ||
], function(err, res) { | ||
if (err) return fn(err); | ||
fn(null, res[1], res[2]); | ||
}); | ||
}; | ||
@@ -44,0 +47,0 @@ |
@@ -40,3 +40,3 @@ /** | ||
if (exit !== '0') return fn(new Error('build exited with status ' + exit)); | ||
fn(null, slug, cache); | ||
fn(null, [slug, cache]); | ||
}); | ||
@@ -54,5 +54,5 @@ }); | ||
if (exit !== '0') return fn(new Error('build exited with status ' + exit)); | ||
fn(null, slug, cache); | ||
fn(null, [slug, cache]); | ||
}); | ||
} | ||
} |
{ | ||
"name": "anvil-cli", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Anvil client for node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16232
477