Skip to content

Commit

Permalink
Merge pull request #261 from pkgxdev/escape-backticks
Browse files Browse the repository at this point in the history
oops, escape backticks
  • Loading branch information
mxcl authored Jan 15, 2025
2 parents 76e1dc6 + c6e4057 commit 19c0d45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ _install_pre_reqs() {
apt() {
case "$1" in
update)
echo "ensure you have the `pkgx` pre-requisites installed:" >&2
echo "ensure you have the \`pkgx\` pre-requisites installed:" >&2
;;
install)
echo " apt-get" "$@" >&2
;;
esac
}
yum() {
echo "ensure you have the `pkgx` pre-requisites installed:" >&2
echo "ensure you have the \`pkgx\` pre-requisites installed:" >&2
echo " yum" "$@" >&2
}
pacman() {
echo "ensure you have the `pkgx` pre-requisites installed:" >&2
echo "ensure you have the \`pkgx\` pre-requisites installed:" >&2
echo " pacman" "$@" >&2
}
fi
Expand Down

0 comments on commit 19c0d45

Please sign in to comment.