mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
feat(tools/check_qml_syntax): check if linter exists
This commit is contained in:
parent
d02d22f9ae
commit
7cb0df4f65
1 changed files with 7 additions and 0 deletions
|
|
@ -15,6 +15,13 @@ NC='\e[0m'
|
|||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
cd $SCRIPT_DIR/..
|
||||
|
||||
# ==============================================================================
|
||||
|
||||
if ! [ -x "$( command -v "$LINTER" )" ]; then
|
||||
printf "${RED}Unable to found `$LINTER`. No tests can be executed.${NC}\n"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
printf "${BLUE}Checking qml files...${NC}\n"
|
||||
|
||||
so_far_so_good=0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue