You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by dr...@apache.org on 2014/01/22 18:50:11 UTC

git commit: fix path for windows

Updated Branches:
  refs/heads/master c92d9c5ec -> f9589fd34


fix path for windows


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/f9589fd3
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/f9589fd3
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/f9589fd3

Branch: refs/heads/master
Commit: f9589fd345ed53b092bbdead0ef4847da7a34d3c
Parents: c92d9c5
Author: David Kemp <dr...@chromium.org>
Authored: Wed Jan 22 12:49:33 2014 -0500
Committer: David Kemp <dr...@chromium.org>
Committed: Wed Jan 22 12:49:33 2014 -0500

----------------------------------------------------------------------
 master.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/f9589fd3/master.cfg
----------------------------------------------------------------------
diff --git a/master.cfg b/master.cfg
index 0c694b2..728bee8 100644
--- a/master.cfg
+++ b/master.cfg
@@ -203,7 +203,7 @@ copy_www_cmd = ShellCommand(command=["ln","-s","../cordova-mobile-spec","www"],w
 if is_Windows :
     copy_www_cmd=ShellCommand(command=["cp","-r","../cordova-mobile-spec","www"],workdir='build\\mobilespec',haltOnFailure=True,description ='Copy www',descriptionDone ='Copy www')
 common_steps_mobilespec_2 = [
-    ShellCommand(command=["node", "../cordova-cli/bin/cordova","plugin","add","../cordova-mobile-spec/dependencies-plugin","--searchpath","../" ],workdir='build/mobilespec',haltOnFailure=True,description='Plugin add',descriptionDone='Plugin add'),
+    ShellCommand(command=["node", "../cordova-cli/bin/cordova","plugin","add","../cordova-mobile-spec/dependencies-plugin","--searchpath",".." ],workdir='build/mobilespec',haltOnFailure=True,description='Plugin add',descriptionDone='Plugin add'),
     ShellCommand(command=["node", "../cordova-cli/bin/cordova", "plugin", "add", "../medic/cordova-plugin-medic"],workdir='build/mobilespec',haltOnFailure=True,description='Medic plugin add',descriptionDone='Medic plugin add'),
     ShellCommand(command=["rm","-rf","mobilespec/www"],workdir='build',haltOnFailure=False,description='Remove www',descriptionDone='Remove www'),
     copy_www_cmd,