mirror of
https://github.com/NixOS/nix.git
synced 2025-02-20 10:53:23 +00:00
11 lines
130 B
Bash
Executable File
11 lines
130 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
test=$1
|
|
|
|
dir="$(dirname "${BASH_SOURCE[0]}")"
|
|
source "$dir/common-test.sh"
|
|
|
|
run "$test"
|