Changed bash command substitution from command to $(command)

This commit is contained in:
David Díaz 2016-06-25 20:29:31 +02:00
parent 1aa7bfcf98
commit f991913c24

View File

@ -11,7 +11,7 @@ if [ ! -r "$OS_REQUIREMENTS_FILENAME" ]; then
cat <<-EOF >&2 cat <<-EOF >&2
There is no requirements file for your distribution. There is no requirements file for your distribution.
You can see one of the files listed below to help search the equivalent package in your system: You can see one of the files listed below to help search the equivalent package in your system:
`find ./ -name "requirements-*.apt" -printf " - %f\n"` $(find ./ -name "requirements-*.apt" -printf " - %f\n")
EOF EOF
exit 1; exit 1;
fi fi