Skip to content

Commit

Permalink
better information to find api key
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Mar 16, 2023
1 parent 558a85b commit 82b9da4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runme.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function fn_setupApp() {
(Get-Content .\.env).replace("your${CURRENT_APP}Pw", "$APP_PASSWORD") | Set-Content .\.env
}
if ("$SUBTYPE" -eq "apikey" ) {
Write-Output "Now enter your $CURRENT_APP APIKey. You can find/generate it inside your $CURRENT_APP dashboard."
Write-Output "Now enter your $CURRENT_APP APIKey. You can find/generate it inside your $CURRENT_APP dashboard/profile."
$APP_APIKEY = Read-Host
(Get-Content .\.env).replace("your${CURRENT_APP}APIKey", "$APP_APIKEY") | Set-Content .\.env
}
Expand Down
2 changes: 1 addition & 1 deletion runme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn_setupApp(){
sed -i "s/your$1Pw/$APP_PASSWORD/" .env
fi
if [ "$4" == "apikey" ] ; then
printf "Now enter your %s APIKey. You can find/generate it inside your %s dashboard."$'\n' "$1"
printf "Now enter your %s APIKey. You can find/generate it inside your %s dashboard/profile."$'\n' "$1"
read -r APP_APIKEY
sed -i "s/your$1APIKey/$APP_APIKEY/" .env
fi
Expand Down

0 comments on commit 82b9da4

Please sign in to comment.