Skip to content

Commit 09c6001

Browse files
committed
confused
1 parent 50a45fa commit 09c6001

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

.github/workflows/build-action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: peter-evans/create-pull-request@v6
3030
env:
3131
COMMIT_MESSAGE: |
32-
Update [.github/action](.github/action) built by GitHub Actions Workflow "${{ github.workflow }}" run ${{ github.server_url }}/${{ github.repository }}/actions/${{ github.run_id }} for user ${{ github.actor }} from commit ${{ github.sha }}.
32+
Update [.github/action](.github/action) built by GitHub Actions workflow "${{ github.workflow }}" run ${{ github.server_url }}/${{ github.repository }}/actions/${{ github.run_id }} for user ${{ github.actor }} from commit ${{ github.sha }}.
3333
with:
3434
add-paths: |
3535
.github/action

.github/workflows/build-shims.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: peter-evans/create-pull-request@v6
2323
env:
2424
COMMIT_MESSAGE: |
25-
Update [internal/bin/shim_*](internal/bin) built by GitHub Actions Workflow "${{ github.workflow }}" run ${{ github.server_url }}/${{ github.repository }}/actions/${{ github.run_id }} for user ${{ github.actor }} from commit ${{ github.sha }}.
25+
Update [internal/bin/shim_*](internal/bin) built by GitHub Actions workflow "${{ github.workflow }}" run ${{ github.server_url }}/${{ github.repository }}/actions/${{ github.run_id }} for user ${{ github.actor }} from commit ${{ github.sha }}.
2626
with:
2727
add-paths: |
2828
internal/bin/shim_amd64

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ lint:
4242

4343
internal/bin/shim_$(GOARCH):
4444
@GOOS=linux $(GO) build -ldflags "-s -w" -o $@ ./internal/cmd/shim
45-
@$(UPX) --ultra-brute $@
45+
@$(UPX) --brute $@
4646

4747
internal/bin/fs_$(GOARCH).go:
4848
@cat internal/bin/fs.go.tpl | sed -e "s|GOARCH|$(GOARCH)|g" > $@

internal/bin/shim_amd64

7.35 MB
Binary file not shown.

internal/bin/shim_arm64

7.21 MB
Binary file not shown.

internal/command/shim.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func NewShim() *cobra.Command {
2626
)
2727

2828
cmd.SetVersionTemplate("{{ .Name }}{{ .Version }} " + runtime.Version() + "\n")
29-
cmd.PersistentFlags().CountVarP(&verbosity, "verbose", "V", "verbosity for forge")
29+
cmd.PersistentFlags().CountVarP(&verbosity, "verbose", "V", "verbosity for shim")
3030
cmd.AddCommand(NewSleep(), NewExec())
3131

3232
return cmd

0 commit comments

Comments
 (0)