mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-22 19:26:30 +00:00
10 lines
220 B
Plaintext
10 lines
220 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
VERSION=3.4.0
|
||
|
|
||
|
curl -L -o "$PROJECT_DIR/tmp/Finicky.zip" "https://github.com/johnste/finicky/releases/download/v${VERSION}/Finicky.zip"
|
||
|
|
||
|
unzip -d "$HOME/Applications" "$PROJECT_DIR/tmp/Finicky.zip"
|