mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 09:56:39 +00:00
14 lines
405 B
Bash
Executable File
14 lines
405 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
# Place your common test setup here
|
|
|
|
# Resolve the project root directory
|
|
_test_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
_root_dir="$(cd "${_test_dir}/.." && pwd)"
|
|
|
|
# Set TMUXIFIER so libexec commands can find lib/util.sh
|
|
export TMUXIFIER="${_root_dir}"
|
|
|
|
# Add libexec to PATH so tmuxifier commands are available
|
|
export PATH="${_root_dir}/libexec:${PATH}"
|