chore: remove duplicate SHELL declaration and organize go.mod dependencies
Some checks failed
CI / Test (push) Failing after 36s
CI / Build (push) Has been skipped

- Remove duplicate `SHELL := /bin/bash` line from Makefile
- Move github.com/muesli/termenv from indirect to direct dependencies in go.mod
This commit is contained in:
Greg Gauthier 2026-06-06 08:06:00 +01:00
parent 8d68448adb
commit 4b91b905c5
2 changed files with 1 additions and 3 deletions

View File

@ -2,8 +2,6 @@
SHELL := /bin/bash
SHELL := /bin/bash
# Versioning (override on command line or via env for releases)
VERSION ?= dev-$(shell git describe --tags --always --dirty 2>/dev/null || echo unknown)
COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown)

2
go.mod
View File

@ -10,6 +10,7 @@ require (
github.com/charmbracelet/bubbletea v1.3.10
github.com/charmbracelet/lipgloss v1.1.0
github.com/dixonwille/wmenu/v5 v5.1.0
github.com/muesli/termenv v0.16.0
github.com/stretchr/testify v1.4.0
)
@ -33,7 +34,6 @@ require (
github.com/mattn/go-runewidth v0.0.19 // indirect
github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/sahilm/fuzzy v0.1.1 // indirect