summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorZeioth2023-03-18 22:31:14 +0100
committerZeioth2023-03-18 22:31:14 +0100
commit1a4fcaf30ed6a64b8eee9830392e3ab557f502c7 (patch)
tree942e1493b1e802d77a2ee23410ffdb315efc1fd6
parentbbbb8af60206787b3c4d7f1e8eddb68e75730313 (diff)
downloadaur-1a4fcaf30ed6a64b8eee9830392e3ab557f502c7.tar.gz
safer cp command
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index be4db6f22d8c..e9c137b9c47c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = linux-command-gpt
pkgdesc = Get Linux commands in natural language with the power of ChatGPT.
pkgver = 0.1.2
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/asrul10/linux-command-gpt.git
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 1f2be210d966..7aff8fc65c4c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@
# Maintainer: Adrian Lopez <zeioth@hotmail.com>
pkgname=linux-command-gpt
pkgver=0.1.2
-pkgrel=1
+pkgrel=2
epoch=
pkgdesc="Get Linux commands in natural language with the power of ChatGPT."
arch=(any)
@@ -35,5 +35,5 @@ package() {
go build -o lcg
# Add it to /usr/bin to make it executable
- sudo cp -nf "${srcdir}"/linux-command-gpt/lcg /usr/bin
+ sudo cp "${srcdir}"/linux-command-gpt/lcg /usr/bin/lcg
}