diff --git a/build.sh b/build.sh index 71ed4da..b3f3799 100755 --- a/build.sh +++ b/build.sh @@ -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; } diff --git a/compile-sass.sh b/compile-sass.sh index 44c32d2..744af46 100755 --- a/compile-sass.sh +++ b/compile-sass.sh @@ -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; }