summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGesh <gesh@gesh.uni.cx>2024-01-27 17:15:45 +0000
committergesh <gesh@gesh.uni.cx>2024-01-27 19:24:44 +0200
commited6d8ce356bbf26e5eef68e1ab878d3d89f0eec9 (patch)
tree160c8429a3a7d346e003f5b778b10f4ebfc02ecd
parentf0c3f2b0e1af9afebfc6343b1f930ad25252eb42 (diff)
pacscripts: Fix glob
Closes: #123
-rw-r--r--src/pacscripts.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacscripts.sh.in b/src/pacscripts.sh.in
index 49ad5c8..e4ea852 100644
--- a/src/pacscripts.sh.in
+++ b/src/pacscripts.sh.in
@@ -81,7 +81,7 @@ print_db() {
pkg=${pkg/ /-}
for file in "$pac_db"/"$pkg"*/install; do
if [ -f "$file" ]; then
- cat "$pac_db/$pkg*/install"
+ cat "$pac_db/$pkg"*/install
echo
return 0
else