fix(misc): fix exit code for running nx outside of a workspace

This commit is contained in:
Jason Jean 2020-07-31 14:57:13 -04:00 committed by Victor Savkin
parent 100989eacb
commit aa09d70b6a

View File

@ -52,6 +52,6 @@ export function initGlobal() {
output.note({
title: `For more information please visit https://nx.dev/`,
});
process.exit(0);
process.exit(1);
}
}