1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-12 01:28:26 +02:00

add backslashes

This commit is contained in:
Kyle Spearrin 2017-02-04 21:40:46 -05:00
parent c3134f779d
commit c31e191d7e

View File

@ -2,7 +2,7 @@
$newVersionCode = $args[1];
$xml=New-Object XML;
$xml.Load($rootPath + "src\Android\Properties\AndroidManifest.xml");
$xml.Load($rootPath + "\src\Android\Properties\AndroidManifest.xml");
$node=$xml.SelectNodes("/manifest");
$node.SetAttribute("android:versionCode", $newVersionCode);
$xml.Save($rootPath + "src\Android\Properties\AndroidManifest.xml");
$xml.Save($rootPath + "\src\Android\Properties\AndroidManifest.xml");