Skip to content

Commit

Permalink
misc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bit101 committed Nov 17, 2023
1 parent 421a86e commit 1862a70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions version
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ list_tools() {
}

try_pacman() {
# is pacman installed?
# is pacman installed? (Arch and derivatives)
command -v pacman >/dev/null 2>&1 || return

# pacman is installed. let's try it
Expand All @@ -228,7 +228,7 @@ try_pacman() {
}

try_apt() {
# is apt installed?
# is apt installed? (Debian, Ubuntu and derivatives)
command -v apt >/dev/null 2>&1 || return

# Java has an `apt` that may be installed (annotation processing tool)
Expand All @@ -249,7 +249,7 @@ try_apt() {
}

try_dnf() {
# is dnf installed?
# is dnf installed? (Fedora and derivatives)
command -v dnf >/dev/null 2>&1 || return

# dnf is installed. let's try it
Expand Down

0 comments on commit 1862a70

Please sign in to comment.