We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 731d878 commit ad6198eCopy full SHA for ad6198e
1 file changed
libexec/scoop-config.ps1
@@ -1,6 +1,6 @@
1
# Usage: scoop config [rm] name [value]
2
# Summary: Get or set configuration values
3
-# Help: The scoop configuration file is saved at ~/.scoop.
+# Help: The scoop configuration file is saved at ~/.config/scoop/config.json.
4
#
5
# To get a configuration setting:
6
@@ -37,7 +37,7 @@ if(!$name) { my_usage; exit 1 }
37
38
if($name -like 'rm') {
39
set_config $value $null | Out-Null
40
- Write-Output "'$name' has been removed"
+ Write-Output "'$value' has been removed"
41
} elseif($null -ne $value) {
42
set_config $name $value | Out-Null
43
Write-Output "'$name' has been set to '$value'"
0 commit comments