1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 13:23:39 +00:00

change all seps to / so that it works x-platform

This commit is contained in:
Kyle Spearrin
2020-06-09 11:52:23 -04:00
parent ba9bafcb5f
commit 1c9a6a02af
7 changed files with 21 additions and 21 deletions

View File

@@ -1,9 +1,9 @@
$rootPath = $env:GITHUB_WORKSPACE;
$androidPath = $($rootPath + "\src\Android\Android.csproj");
$appPath = $($rootPath + "\src\App\App.csproj");
$androidPath = $($rootPath + "/src/Android/Android.csproj");
$appPath = $($rootPath + "/src/App/App.csproj");
$androidManifest = $($rootPath + "\src\Android\Properties\AndroidManifest.xml");
$androidManifest = $($rootPath + "/src/Android/Properties/AndroidManifest.xml");
Write-Output "########################################"
Write-Output "##### Clean Android and App"