change home path to ~

This commit is contained in:
Kyle Spearrin 2020-06-09 13:00:43 -04:00
parent b828cd5975
commit bc1f6464d3
4 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
$rootPath = $env:GITHUB_WORKSPACE;
$homePath = $env:HOME;
$homePath = "~";
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
$credsPath = $($homePath + "/secrets/play_creds.json");

View file

@ -4,7 +4,7 @@
[string] $output
)
$homePath = $env:HOME
$homePath = "~"
Write-Output "Home path is: '$homePath'"

View file

@ -1,4 +1,4 @@
$homePath = $env:HOME;
$homePath = "~";
$secretsPath = $homePath + "/secrets"
$mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12");

View file

@ -1,4 +1,4 @@
$homePath = $env:HOME;
$homePath = "~";
$secretsPath = $homePath + "/secrets"
$autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");