You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2014/04/29 20:15:51 UTC

spec commit: CB-6549 use relative path to link assets

Repository: cordova-mobile-spec
Updated Branches:
  refs/heads/master 769421fe0 -> a9a0e7e8b


CB-6549 use relative path to link assets

Changed: Use relative path instead of absolute path, to link the
cordova-mobile-spec repository with the mobilespec project. This is needed
for Windows-based dev workstations.

github: close #59


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/a9a0e7e8
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/a9a0e7e8
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/a9a0e7e8

Branch: refs/heads/master
Commit: a9a0e7e8bd233fae4f034aae8e322446facca33e
Parents: 769421f
Author: Martin Gonzalez <ma...@gmail.com>
Authored: Tue Apr 29 12:58:06 2014 -0500
Committer: Marcel Kinard <cm...@gmail.com>
Committed: Tue Apr 29 14:14:35 2014 -0400

----------------------------------------------------------------------
 createmobilespec/createmobilespec.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/a9a0e7e8/createmobilespec/createmobilespec.js
----------------------------------------------------------------------
diff --git a/createmobilespec/createmobilespec.js b/createmobilespec/createmobilespec.js
index a07bd9d..5618a0b 100755
--- a/createmobilespec/createmobilespec.js
+++ b/createmobilespec/createmobilespec.js
@@ -111,7 +111,7 @@ try {
 // Setting up config.fatal as true, if something goes wrong the program it will terminate
 shelljs.config.fatal = true;
 // Creating the project, linked to cordova-mobile-spec library
-shelljs.exec(cordova_cli + " create mobilespec org.apache.cordova.mobilespec MobileSpec_Tests --link-to " + cordova_ms);
+shelljs.exec(cordova_cli + " create mobilespec org.apache.cordova.mobilespec MobileSpec_Tests --link-to cordova-mobile-spec");
 
 // Executing grunt task, to generate updated js files for each platform
 shelljs.pushd(cordova_js);