shoestrap/recipes/default/abuse-the-force

13 lines
346 B
Plaintext
Raw Normal View History

2013-08-08 03:23:13 +00:00
#! /bin/bash
2023-02-24 22:36:47 +00:00
if [ ! -d "$WORKSPACE/abuse-the-force" ]; then
git clone https://github.com/ViViDboarder/abuse-the-force.git "$WORKSPACE/abuse-the-force"
2013-08-08 03:23:13 +00:00
fi
2023-02-24 22:36:47 +00:00
cd "$WORKSPACE/abuse-the-force" && git pull && rake install
2013-08-08 03:23:13 +00:00
# Ensure this is in the user PATH
2023-02-24 22:36:47 +00:00
for f in "$DEFAULT_ASSETS_PATH"/* ; do
try_link "$f" "$USER_BIN/$(basename "$f")"
2013-08-08 03:23:13 +00:00
done