mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 22:26:32 +00:00
14 lines
337 B
Plaintext
14 lines
337 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
if [ ! -d $WORKSPACE/abuse-the-force ]; then
|
||
|
git clone https://github.com/ViViDboarder/abuse-the-force.git $WORKSPACE/abuse-the-force
|
||
|
fi
|
||
|
|
||
|
cd $WORKSPACE/abuse-the-force && git pull && rake install
|
||
|
|
||
|
# Ensure this is in the user PATH
|
||
|
for f in $DEFAULT_ASSETS_PATH/* ; do
|
||
|
try_link "$f" "$USER_BIN/$(basename $f)"
|
||
|
done
|
||
|
|