mirror of
https://github.com/rocky-linux/rocky-tools.git
synced 2024-12-29 12:50:56 +00:00
Add missing format string to printf.
This commit is contained in:
parent
64dbbde473
commit
dae927baeb
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ if [[ "$(id -u)" -ne 0 ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! type curl >/dev/null 2>&1; then
|
if ! type curl >/dev/null 2>&1; then
|
||||||
printf "${blue}Curl is not installed! Installing it...$nocolor"
|
printf '%s\n' "${blue}Curl is not installed! Installing it...$nocolor"
|
||||||
dnf -y install curl libcurl
|
dnf -y install curl libcurl
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue