ninja 192 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash

OS="$(uname -s)"

if [ "${OS}" = "Linux" ]; then
  exec ninja-linux64 "$@"
elif [ "${OS}" = "Darwin" ]; then
  exec ninja-mac "$@"
else
  echo "Unsupported OS ${OS}"
  exit 1
fi
13