summaryrefslogtreecommitdiff
path: root/completions/powershell/podman-remote.ps1
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-12-16 20:21:51 +0100
committerGitHub <noreply@github.com>2021-12-16 20:21:51 +0100
commit2c98694559b6413ec4f9abdb6d3750b6dd46cc4f (patch)
tree8bc07d671616bc402c7062cda29d0d4c6c292009 /completions/powershell/podman-remote.ps1
parentbe6f9ce92186bca7cce2a0b89f82cb7c7e720029 (diff)
parent03a3fc37fe82800113a1c9043448acb2afa539a6 (diff)
downloadpodman-2c98694559b6413ec4f9abdb6d3750b6dd46cc4f.tar.gz
podman-2c98694559b6413ec4f9abdb6d3750b6dd46cc4f.tar.bz2
podman-2c98694559b6413ec4f9abdb6d3750b6dd46cc4f.zip
Merge pull request #12608 from Luap99/cobra
bump cobra to 1.3.0
Diffstat (limited to 'completions/powershell/podman-remote.ps1')
-rw-r--r--completions/powershell/podman-remote.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/powershell/podman-remote.ps1 b/completions/powershell/podman-remote.ps1
index e065d0426..2edc79ffb 100644
--- a/completions/powershell/podman-remote.ps1
+++ b/completions/powershell/podman-remote.ps1
@@ -33,7 +33,7 @@ Register-ArgumentCompleter -CommandName 'podman-remote' -ScriptBlock {
if ($Command.Length -gt $CursorPosition) {
$Command=$Command.Substring(0,$CursorPosition)
}
- __podman-remote_debug "Truncated command: $Command"
+ __podman-remote_debug "Truncated command: $Command"
$ShellCompDirectiveError=1
$ShellCompDirectiveNoSpace=2
@@ -41,7 +41,7 @@ Register-ArgumentCompleter -CommandName 'podman-remote' -ScriptBlock {
$ShellCompDirectiveFilterFileExt=8
$ShellCompDirectiveFilterDirs=16
- # Prepare the command to request completions for the program.
+ # Prepare the command to request completions for the program.
# Split the command at the first space to separate the program and arguments.
$Program,$Arguments = $Command.Split(" ",2)
$RequestComp="$Program __complete $Arguments"
@@ -216,7 +216,7 @@ Register-ArgumentCompleter -CommandName 'podman-remote' -ScriptBlock {
Default {
# Like MenuComplete but we don't want to add a space here because
# the user need to press space anyway to get the completion.
- # Description will not be shown because thats not possible with TabCompleteNext
+ # Description will not be shown because that's not possible with TabCompleteNext
[System.Management.Automation.CompletionResult]::new($($comp.Name | __podman-remote_escapeStringWithSpecialChars), "$($comp.Name)", 'ParameterValue', "$($comp.Description)")
}
}