Skip to content
Snippets Groups Projects
Commit a6fc0d69 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(bundler): return artifact error for "bundle lock" was called with arguments

parent 24d10a16
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,8 @@ export async function updateArtifacts(
const output = err.stdout + err.stderr;
if (
err.message.includes('fatal: Could not parse object') ||
output.includes('but that version could not be found')
output.includes('but that version could not be found') ||
output.includes('"bundle lock" was called with arguments')
) {
return [
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment