mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-26 12:16:07 +01:00
Invoke-Expression
This commit is contained in:
parent
12cd2b67cd
commit
10839588dd
@ -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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user