mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
13 lines
144 B
Plaintext
13 lines
144 B
Plaintext
|
#!/bin/bash
|
||
|
yarn lint
|
||
|
lintStatus=$?
|
||
|
|
||
|
if [ $lintStatus -eq 0 ]
|
||
|
then
|
||
|
echo "linting succeeded"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "linting failed"
|
||
|
exit 1
|
||
|
fi
|