You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2015/05/28 08:53:31 UTC

cordova-windows git commit: CB-9073 Fixes build error when path to project contains `&` symbol

Repository: cordova-windows
Updated Branches:
  refs/heads/master 35a6cf908 -> 0c8943d17


CB-9073 Fixes build error when path to project contains `&` symbol


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

Branch: refs/heads/master
Commit: 0c8943d1711ae18dc64bef255365a884e492619b
Parents: 35a6cf9
Author: Vladimir Kotikov <v-...@microsoft.com>
Authored: Tue May 26 14:37:17 2015 +0300
Committer: Vladimir Kotikov <v-...@microsoft.com>
Committed: Thu May 28 09:53:38 2015 +0300

----------------------------------------------------------------------
 template/cordova/version.bat | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/0c8943d1/template/cordova/version.bat
----------------------------------------------------------------------
diff --git a/template/cordova/version.bat b/template/cordova/version.bat
index 0fdf81d..09c83d9 100644
--- a/template/cordova/version.bat
+++ b/template/cordova/version.bat
@@ -15,11 +15,11 @@
 :: specific language governing permissions and limitations
 :: under the License
 @ECHO OFF
-SET full_path=%~dp0
-IF EXIST "%full_path%..\VERSION" (
-    type "%full_path%..\VERSION"
+SET full_path="%~dp0"
+IF EXIST %full_path%..\VERSION (
+    type %full_path%..\VERSION
 ) ELSE (
     ECHO.
     ECHO ERROR: Could not find file VERSION in project folder
     EXIT /B 1
-)
\ No newline at end of file
+)


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