mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "--- bash syntax"
|
|
|
|
set -e
|
|
cd $(dirname "${BASH_SOURCE[0]}")/../..
|
|
|
|
find dev -name '*.sh' -print0 | xargs -0 -n 1 bash -n
|