6 lines
146 B
Bash
Executable File
6 lines
146 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
exec "$ROOT/scripts/platform_test_common.sh" linux
|