1#!/usr/bin/env bash 2set -euo pipefail 3 4mkdir -p bin 5rm -f bin/* 6 7TARGET_OS=${1:-darwin} 8 9source ./scripts/install.sh $TARGET_OS 10 11