kiteco-public/scripts/platform.sh
2021-12-31 23:54:19 -08:00

6 lines
107 B
Bash
Executable File

#!/usr/bin/env bash
if [[ "$TRAVIS_OS_NAME" == $1 ]]; then
echo "Running command '$2' in $1"
$2
fi