mirror of
https://github.com/powerline/powerline.git
synced 2025-11-25 16:03:46 +01:00
8 lines
115 B
Bash
Executable File
8 lines
115 B
Bash
Executable File
#!/bin/sh
|
|
FAILED=0
|
|
if ! sh tests/test_shells/test.sh --fast ; then
|
|
echo "Failed shells"
|
|
FAILED=1
|
|
fi
|
|
exit $FAILED
|