You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by je...@apache.org on 2013/09/27 16:26:40 UTC

[36/50] [abbrv] webworks commit: [CB-4800] Workaround a Short File Name error on WinXP while maintaining fix for long paths

[CB-4800] Workaround a Short File Name error on WinXP while maintaining fix for long paths

Reviewed by Bryan Higgins <bh...@blackberry.com>
Tested by Tracy Li <tl...@blackberry.com>


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

Branch: refs/heads/3.1.x
Commit: 5334f108d2ddf1188b8059c92a551c0a2f1cbf16
Parents: 1f955e9
Author: Jeffrey Heifetz <jh...@blackberry.com>
Authored: Thu Sep 12 15:27:53 2013 -0400
Committer: Bryan Higgins <bh...@blackberry.com>
Committed: Mon Sep 16 15:23:34 2013 -0400

----------------------------------------------------------------------
 blackberry10/bin/check_reqs.bat | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/5334f108/blackberry10/bin/check_reqs.bat
----------------------------------------------------------------------
diff --git a/blackberry10/bin/check_reqs.bat b/blackberry10/bin/check_reqs.bat
index 98127c3..f1f54f9 100755
--- a/blackberry10/bin/check_reqs.bat
+++ b/blackberry10/bin/check_reqs.bat
@@ -17,7 +17,11 @@ goto comment
        specific language governing permissions and limitations
        under the License.
 :comment
-call "%~dps0init"
+set INITCALL="%~dps0init"
+if not exist INITCALL (
+    set INITCALL="%~dp0init"
+)
+call %INITCALL%
 
 set FOUNDJAVA=
 for %%e in (%PATHEXT%) do (