mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
fix secretOutputPath
This commit is contained in:
parent
0027c21630
commit
f4ad1ec8e7
1 changed files with 2 additions and 2 deletions
4
.github/scripts/decrypt-secret.ps1
vendored
4
.github/scripts/decrypt-secret.ps1
vendored
|
@ -21,9 +21,9 @@ if ([string]::IsNullOrEmpty($output)) {
|
|||
}
|
||||
}
|
||||
|
||||
if(!(Test-Path -Path $secretPath))
|
||||
if(!(Test-Path -Path $secretOutputPath))
|
||||
{
|
||||
New-Item -ItemType Directory -Path $secretPath
|
||||
New-Item -ItemType Directory -Path $secretOutputPath
|
||||
}
|
||||
|
||||
gpg --quiet --batch --yes --decrypt --passphrase="$passphrase" --output $output $input
|
||||
|
|
Loading…
Reference in a new issue