mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
9 lines
204 B
Bash
9 lines
204 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# pytest-xprocess doesn't allow us to CD into a particular directory before
|
|
# launching a command, so we do it here.
|
|
cd "$(dirname "$0")"
|
|
. ./variables.sh
|
|
cd mysteryshack
|
|
exec make "$@"
|