diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 6cd5223..1c4c229 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -49,7 +49,7 @@ winget: commit_msg_template: "{{ .PackageIdentifier }}: {{ .Tag }}" path: manifests/g/goreleaser/1.19 homepage: "https://github.com/cpendery/clac" - skip_upload: false + skip_upload: true release_notes: "{{.Changelog}}" tags: - golang diff --git a/shell/key-bindings.bash b/shell/key-bindings.bash index 6a0108a..a4ec0ee 100644 --- a/shell/key-bindings.bash +++ b/shell/key-bindings.bash @@ -1,6 +1,6 @@ __clac__() { - ./clac "$READLINE_LINE" - output=$(./clac -o) + clac "$READLINE_LINE" + output=$(clac -o) eval "$output" } diff --git a/shell/key-bindings.ps1 b/shell/key-bindings.ps1 index ffdd4e9..c00bfad 100644 --- a/shell/key-bindings.ps1 +++ b/shell/key-bindings.ps1 @@ -12,13 +12,13 @@ Set-PSReadLineKeyHandler -Chord 'Ctrl+a' -ScriptBlock { [Microsoft.PowerShell.PSConsoleReadLine]::KillLine() if ($command) { - Start-Process -NoNewWindow -Wait ".\clac" "$command" + Start-Process -NoNewWindow -Wait "clac" "$command" } else { - Start-Process -NoNewWindow -Wait ".\clac" + Start-Process -NoNewWindow -Wait "clac" } $pinfo = New-Object System.Diagnostics.ProcessStartInfo - $pinfo.FileName = ".\clac" + $pinfo.FileName = "clac" $pinfo.RedirectStandardError = $true $pinfo.RedirectStandardOutput = $true $pinfo.UseShellExecute = $false diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh index 387fd25..92f7526 100644 --- a/shell/key-bindings.zsh +++ b/shell/key-bindings.zsh @@ -1,6 +1,6 @@ clac-widget() { - ./clac "${(qqq)LBUFFER}" - output=$(./clac -o) + clac "${(qqq)LBUFFER}" + output=$(clac -o) eval "$output" }