summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkleintux2022-05-26 20:09:36 +0200
committerkleintux2022-05-26 20:09:36 +0200
commitbfb7eb6e93125324b1cba1a31af8a9d246e4bd23 (patch)
tree15736f066f38dbf4f33ef0c453335c9ef6ce7982
parent96c66b795bc926f9e7429c69d6904f03bd64fb4a (diff)
downloadaur-bfb7eb6e93125324b1cba1a31af8a9d246e4bd23.tar.gz
fixed new go module routine
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1f56c3cf8c59..d82df4bb4ad8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = terminal-parrot
pkgdesc = Party parrot (http://cultofthepartyparrot.com) for your terminal
pkgver = 1.1.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/jmhobbs/terminal-parrot
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 64fc6752c3e4..4233c1250d69 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=terminal-parrot
pkgver=1.1.1
-pkgrel=1
+pkgrel=2
conflicts=('terminal-parrot-git')
pkgdesc="Party parrot (http://cultofthepartyparrot.com) for your terminal"
arch=('any')
@@ -18,7 +18,8 @@ prepare() {
mkdir -p go
echo $srcdir
export GOPATH="$srcdir/go"
- go get github.com/nsf/termbox-go
+ go mod init github.com/nsf/termbox-go
+ go mod tidy
}
build() {