mirror of https://github.com/zulip/zulip.git
9 lines
101 B
Plaintext
9 lines
101 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
# cd into $1 and then exec the rest of the args
|
||
|
|
||
|
cd "$1"
|
||
|
shift
|
||
|
exec "$@"
|