15 lines
472 B
Plaintext
Raw Normal View History

2013-08-07 20:23:13 -07:00
#! /bin/bash
# Some settings are mac specific
if [[ "$UNAME_STR" == "Darwin" ]]; then
2023-02-24 14:36:47 -08:00
wget -P "$USER_BIN" https://godist.herokuapp.com/projects/heroku/force/releases/current/darwin-amd64/force
2013-08-07 20:23:13 -07:00
elif [[ "$UNAME_STR" == "Linux" ]]; then
2023-02-24 14:36:47 -08:00
wget -P "$USER_BIN" https://godist.herokuapp.com/projects/heroku/force/releases/current/linux-amd64/force
2013-08-07 20:23:13 -07:00
fi
2023-02-24 14:36:47 -08:00
chmod +x "$USER_BIN/force"
2013-08-07 20:23:13 -07:00
2023-02-24 14:36:47 -08:00
for f in "$DEFAULT_ASSETS_PATH"/* ; do
try_link "$f" "$USER_BIN/$(basename "$f")"
2013-08-07 20:23:13 -07:00
done