mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
13 lines
144 B
Text
13 lines
144 B
Text
|
#!/bin/bash
|
||
|
yarn lint
|
||
|
lintStatus=$?
|
||
|
|
||
|
if [ $lintStatus -eq 0 ]
|
||
|
then
|
||
|
echo "linting succeeded"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "linting failed"
|
||
|
exit 1
|
||
|
fi
|