mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
12 lines
307 B
Bash
Executable file
12 lines
307 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
STYLELINT=$(which stylelint || true)
|
|
if [ -z "$STYLELINT" ]; then
|
|
echo "Can't find command \"stylelint\" in $PATH"
|
|
exit 1
|
|
fi
|
|
|
|
echo Checking stylesheets with $STYLELINT ...
|
|
find css/ -name "*.css" -print0 | xargs -0 $STYLELINT
|
|
find css/ -name "*.scss" -print0 | xargs -0 $STYLELINT
|