blob: b89367a741adc1697d16472f59b67a5ec3466f98 [file] [log] [blame]
#!/bin/bash
if [[ "$OSTYPE" =~ ^darwin ]]; then
# This is OS X.
$BUCK_PROJECT_ROOT/node/binaries/os_x_node_executable "$@"
else
# This is not OS OX: assume Linux.
$BUCK_PROJECT_ROOT/node/binaries/linux_node_executable "$@"
fi