Skip to content

Commit

Permalink
Fix Ignore flag --utils in the presence of --nodeps #13
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Dec 10, 2022
1 parent 2d3ee52 commit 92bd398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch-linux/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ if [ -n "${bluetooth}" ]; then
util_pkgs+=(blueman)
fi

if [ -n "${utils}" ]; then
if [ -n "${utils}" ] && [ -z "${nodeps}" ]; then
for util in "${util_pkgs[@]}"; do
util_pkg="${util%%:*}"
echo "${util}"
Expand Down
2 changes: 1 addition & 1 deletion debian/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ -n "${bluetooth}" ]; then
util_pkgs+=(blueman)
fi

if [ -n "${utils}" ]; then
if [ -n "${utils}" ] && [ -z "${nodeps}" ]; then
for util in "${util_pkgs[@]}"; do
util_pkg="${util%%:*}"
echo "${util}"
Expand Down

0 comments on commit 92bd398

Please sign in to comment.