Skip to content

Commit

Permalink
eos-pkg-changelog: a small fix to problem handling
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-192 committed Dec 21, 2024
1 parent 5a2d27a commit 04759ca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion eos-pkg-changelog
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,11 @@ Parameters() {
INFO "reading $clfile..."
source "$clfile" || DIE "reading $clfile failed"
else
[ "$REPONAME" = endeavouros ] && WARN "$clfile not found" || DIE "$clfile not found"
case "$REPONAME" in
endeavouros) WARN "$clfile not found" ;;
"") INFO "using prefedined EndeavourOS changelog definitions" ;;
*) DIE "$clfile not found" ;;
esac
fi
;;
--parameters)
Expand Down

0 comments on commit 04759ca

Please sign in to comment.