mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
9 lines
101 B
Bash
Executable File
9 lines
101 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# cd into $1 and then exec the rest of the args
|
|
|
|
cd "$1"
|
|
shift
|
|
exec "$@"
|