-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetforgery.sh
More file actions
executable file
·33 lines (29 loc) · 835 Bytes
/
getforgery.sh
File metadata and controls
executable file
·33 lines (29 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env bash
if ! command -v cargo &> /dev/null; then
echo 'Rust and Cargo are necessary to install Forgery';
exit 127;
fi
if command -v forgery &> /dev/null; then
echo 'A Forgery version already exists, reinstalling...';
fi
CACHE_PATH=~/.cache/forgery-rs/
FORGERY_REPO=https://github.com/Tudmotu/forgery-rs.git
echo 'Installing Forgery from source...';
mkdir -p $CACHE_PATH
pushd $CACHE_PATH
git clone $FORGERY_REPO repo
pushd repo
cargo install --locked --path .
if [ $? -eq 0 ]; then
if command -v forgery &> /dev/null; then
echo "Forgery was installed at: $(command -v forgery)";
else
echo 'Forgery was installed.';
echo "Try adding cargo's bin directory to your PATH";
fi
else
echo 'An error occured during Forgery installation';
fi
popd
rm -rf $CACHE_PATH/repo
popd