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

args for increment version script

This commit is contained in:
Kyle Spearrin 2017-02-04 21:35:02 -05:00
parent d4749c139b
commit c3134f779d

View File

@ -1,5 +1,5 @@
$rootPath = "%APPVEYOR_BUILD_FOLDER%";
$newVersionCode = "%APPVEYOR_BUILD_NUMBER%";
$rootPath = $args[0];
$newVersionCode = $args[1];
$xml=New-Object XML;
$xml.Load($rootPath + "src\Android\Properties\AndroidManifest.xml");