Skip to content

Commit

Permalink
🐛 debian not found curl command.
Browse files Browse the repository at this point in the history
  • Loading branch information
marchocode committed Feb 2, 2024
1 parent 6e8c857 commit 87af42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny-shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if [[ ! -e ${WORKDIR} ]]; then
if [[ ${release} = "ubuntu" ]];then
apt update > /dev/null && apt-get -y install apt-transport-https ca-certificates curl wget gnupg > /dev/null
elif [[ ${release} = "debian" ]];then
apt update > /dev/null && apt-get -y ca-certificates curl wget > /dev/null
apt update > /dev/null && apt-get -y install ca-certificates curl wget > /dev/null
else
info "Nothing to do."
fi
Expand Down

0 comments on commit 87af42b

Please sign in to comment.