From 2a990181bfaa85f460aed5fe343ffbcbf17f0e09 Mon Sep 17 00:00:00 2001 From: Fabiano Alencar Date: Fri, 17 Aug 2018 13:57:51 -0300 Subject: [PATCH] Change msg of no installed sass --- build.sh | 2 +- compile-sass.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; }