From 346c6b48afe35680145c2626e2966019b5a9a566 Mon Sep 17 00:00:00 2001 From: rosen-vladimirov Date: Wed, 25 Feb 2015 16:25:38 +0200 Subject: [PATCH] Fix copy-from and link-to options Due to yargs issues, we have to add copy-from as copyFrom and link-to as linkTo. --- lib/options.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/options.ts b/lib/options.ts index a7328632c3..29549bddfb 100644 --- a/lib/options.ts +++ b/lib/options.ts @@ -9,7 +9,9 @@ import hostInfo = require("./common/host-info"); var knownOpts:any = { "frameworkPath": String, "copy-from": String, + "copyFrom": String, "link-to": String, + "linkTo": String, "release": Boolean, "emulator": Boolean, "symlink": Boolean,