mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:11:57 +00:00
9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# Feed every directory in /app/data to src-expose
|
|
|
|
codedirs=$(cd /app/data && find . -maxdepth 1 -mindepth 1 | cut -c3- | xargs)
|
|
|
|
# shellcheck disable=SC2086
|
|
exec /usr/local/bin/src-expose $codedirs
|