Change msg of no installed sass

This commit is contained in:
Fabiano Alencar 2018-08-17 13:57:51 -03:00
parent 171fcc4395
commit 2a990181bf
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
command -v sass >/dev/null 2>&1 || {
echo >&2 "SASS does not seem to be available.";
echo >&2 "REQUIRE: SASS installed to compile the SCSS archives to CSS.";
exit 1;
}

View File

@ -2,7 +2,7 @@
# Executa o comando 'sass' para verificar se existe (veja http://stackoverflow.com/a/677212/329911)
command -v sass >/dev/null 2>&1 || {
echo >&2 "SASS does not seem to be available.";
echo >&2 "REQUIRE: SASS installed to compile the SCSS archives to CSS.";
exit 1;
}