You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ni...@apache.org on 2016/01/26 22:00:03 UTC

spec commit: CB-10439: Option for windows8 option must be removed from cordova-mobile-spec package

Repository: cordova-mobile-spec
Updated Branches:
  refs/heads/master f4e116b8a -> 53e0788fa


CB-10439: Option for windows8 option must be removed from cordova-mobile-spec package

Removed windows8 platform from the list


Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/53e0788f
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/53e0788f
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/53e0788f

Branch: refs/heads/master
Commit: 53e0788fac81104dcc5c87fd098cfb4d9ae65fec
Parents: f4e116b
Author: Sarangan Rajamanickam <sa...@microsoft.com>
Authored: Mon Jan 25 17:21:58 2016 -0800
Committer: Sarangan Rajamanickam <sa...@microsoft.com>
Committed: Mon Jan 25 17:21:58 2016 -0800

----------------------------------------------------------------------
 createmobilespec/createmobilespec.js | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/53e0788f/createmobilespec/createmobilespec.js
----------------------------------------------------------------------
diff --git a/createmobilespec/createmobilespec.js b/createmobilespec/createmobilespec.js
index c37e5a8..5ec2d81 100755
--- a/createmobilespec/createmobilespec.js
+++ b/createmobilespec/createmobilespec.js
@@ -95,8 +95,6 @@ var top_dir =             process.cwd() + path.sep,
                             "ios":          { "bin": ["cordova-ios"],
                                               "www": ["www"],
                                               "config": ["CUSTOM"] },
-                            "windows8":     { "bin": ["cordova-windows"],
-                                              "www": ["www"] },
                             "windows":      { "bin": ["cordova-windows"],
                                               "www": ["www"] },
                             "wp8":          { "bin": ["cordova-wp8"],
@@ -106,7 +104,7 @@ var top_dir =             process.cwd() + path.sep,
     argv = optimist.usage("\nUsage: $0 PLATFORM... [--help] [--plugman] [--link] [--global] [--globalplugins] [--plugins=\".\\myPluginDir\"] [--skipjs] [--skiplink] [directoryName]\n" +
                           "A project will be created with the mobile-spec app and all the core plugins.\n" +
                           "At least one platform must be specified. See the included README.md.\n" +
-                          "\tPLATFORM: [--<amazon|android|blackberry10|ios|windows|windows8|wp8|firefoxos>]\n" +
+                          "\tPLATFORM: [--<amazon|android|blackberry10|ios|windows|wp8|firefoxos>]\n" +
                           "")
                    .boolean("help").describe("help", "Shows usage.")
                    .boolean("debug").describe("debug", "Debug logging.")
@@ -114,8 +112,7 @@ var top_dir =             process.cwd() + path.sep,
                    .boolean("android").describe("android", "Add Android platform.")
                    .boolean("blackberry10").describe("blackberry10", "Add BlackBerry 10 platform.")
                    .boolean("ios").describe("ios", "Add iOS platform.")
-                   .boolean("windows").describe("windows", "Add Windows (universal) platform.")
-                   .boolean("windows8").describe("windows8", "Add Windows 8 (desktop) platform.")
+                   .boolean("windows").describe("windows", "Add Windows (universal) platform.")                   
                    .boolean("wp8").describe("wp8", "Add Windows Phone 8 platform.")
                    .boolean("firefoxos").describe("firefoxos", "Add FirefoxOS platform.")
                    .boolean("plugman").describe("plugman", "Use {platform}/bin/create and plugman directly instead of the CLI.")
@@ -237,7 +234,6 @@ if (argv.android) { platforms.push("android"); }
 if (argv.ios) { platforms.push("ios"); }
 if (argv.blackberry10) { platforms.push("blackberry10"); }
 if (argv.wp8) { platforms.push("wp8"); }
-if (argv.windows8) { platforms.push("windows8"); }
 if (argv.windows) { platforms.push("windows"); }
 if (argv.firefoxos) { platforms.push("firefoxos"); }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org