xref: /expo/bin/expotools (revision 2fd75d6d)
1#!/usr/bin/env bash
2
3set -euo pipefail
4
5script_dir=$(dirname "$0")
6repository_root="${script_dir}/.."
7expotools_dir="`cd ${repository_root}/tools;pwd;`"
8NODE_BINARY=${NODE_BINARY:-node}
9
10$NODE_BINARY "${expotools_dir}/bin/expotools.js" "$@"
11