From 73aec4218982d448dffb942e819fa191fe5ae620 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Thu, 2 Jul 2026 09:59:40 +0200 Subject: [PATCH] Remove obsolete bump_gocui.sh script We copied the gocui sources into lazygit a while ago, so we no longer need this. --- scripts/bump_gocui.sh | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 scripts/bump_gocui.sh diff --git a/scripts/bump_gocui.sh b/scripts/bump_gocui.sh deleted file mode 100755 index 13a1f575a..000000000 --- a/scripts/bump_gocui.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# Go's proxy servers are not very up-to-date so that's why we use `GOPROXY=direct` -# We specify the `master` branch to avoid the default behaviour of looking for a semver tag. -GOPROXY=direct go get -u github.com/jesseduffield/gocui@master && go mod vendor && go mod tidy - -# Note to self if you ever want to fork a repo be sure to use this same approach: it's important to use the branch name (e.g. master)