mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-02 23:01:19 +00:00
A problem, caused by using the old line `Invoke-ExternalCommand -FilePath \"$dir\\bin\\initdb.exe\" -ArgumentList \"--username=postgres --encoding=UTF8 --locale=en --lc-collate=C\" | Out-Null`, occurs in Windows so that people could not login by the default superuser Id "postgres"
By migration to the new line `Invoke-ExternalCommand -FilePath \"$dir\\bin\\initdb.exe\" -ArgumentList @('--username=postgres', '--encoding=UTF8', '--locale=en', '--lc-collate=C') | Out-Null`, the issue is eliminated.
…
Scoop Main

Core manifests for Scoop, the Windows command-line installer. For manifests that fit the Main criteria.
How do I install these manifests?
Just do scoop install <manifest>. This is the default bucket for Scoop and is added by default.
How do I contribute new manifests?
To make a new manifest contribution, please read the Contributing Guide.
Description
Languages
PowerShell
100%