Added note about version.bat bug.

Along with Cordova 3.2 and Windows Phone 8 the `version.bat` script has to be renamed to `version`.
This commit is contained in:
Sebastián Katzer 2013-12-01 13:45:08 +01:00
parent eee56018a6
commit 0389bd53c3

View File

@ -109,3 +109,15 @@ namespace your.own.namespace
}
}
```
### TypeError: Cannot read property 'currentVersion' of null
Along with Cordova 3.2 and Windows Phone 8 the `version.bat` script has to be renamed to `version`.
On Mac or Linux
```
mv platforms/wp8/cordova/version.bat platforms/wp8/cordova/version
```
On Windows
```
ren platforms\wp8\cordova\version.bat platforms\wp8\cordova\version
```