mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:51:59 +00:00
11 lines
174 B
Bash
Executable File
11 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "--- bash syntax"
|
|
|
|
trap "echo ^^^ +++" ERR
|
|
|
|
set -e
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"/../..
|
|
|
|
find dev -name '*.sh' -print0 | xargs -0 -n 1 bash -n
|