1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-10-06 05:17:59 +02:00

Invoke-Expression

This commit is contained in:
Kyle Spearrin 2018-01-10 22:20:22 -05:00
parent 12cd2b67cd
commit 10839588dd

View File

@ -18,7 +18,9 @@ $xml.Save($androidManifest);
echo "##### Decrypt Keystore"
$encKeystorePath = $($rootPath + "\src\Android\8bit.keystore.enc");
..\..\secure-file\tools\secure-file -decrypt $($encKeystorePath) -secret $($env:keystore_password)
$secureFilePath = $($rootPath + "\secure-file\tools\secure-file");
Invoke-Expression "& `"$secureFilePath`" -decrypt $($encKeystorePath) -secret $($env:keystore_password)"
echo "##### Sign Release Configuration"
@ -69,7 +71,9 @@ $xml.Save($appPath);
echo "##### Restore NuGet"
..\..\nuget.exe restore
$nugetPath = $($rootPath + "\nuget.exe");
Invoke-Expression "& `"$nugetPath`" restore"
echo "##### Build and Sign FDroid Configuration"