From a3cb68fdc84319d3d28a2964b91933cacf8db636 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Thu, 10 Mar 2016 11:50:43 +0200 Subject: [PATCH] Remove shelljs.config.fatal When adding platform, CLI tries to copy some files from runtime to the native project. When some of the files do not exist and `shelljs.config.fatal` is true, shelljs exits the process without warn. Remove the option for the moment and consider better usage for it. --- lib/nativescript-cli.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/nativescript-cli.ts b/lib/nativescript-cli.ts index 3e7d989aee..a06792c38f 100644 --- a/lib/nativescript-cli.ts +++ b/lib/nativescript-cli.ts @@ -9,7 +9,6 @@ import * as fiber from "fibers"; import Future = require("fibers/future"); import * as shelljs from "shelljs"; shelljs.config.silent = true; -shelljs.config.fatal = true; import {installUncaughtExceptionListener} from "./common/errors"; installUncaughtExceptionListener(process.exit);