computable-pandoc/scripts/get_fennel.sh

12 lines
218 B
Bash
Raw Normal View History

2023-03-09 15:58:14 -06:00
# Downloads Fennel
2023-03-06 20:17:33 -06:00
# Variables
NAME="fennel-1.3.0"
2023-03-07 16:57:14 -06:00
URL="https://fennel-lang.org/downloads/$NAME.tar.gz"
2023-03-06 20:17:33 -06:00
# Copies Fennel from release tarball
2023-03-07 16:57:14 -06:00
curl -O $URL
tar -xvzf $NAME.tar.gz
2023-03-09 20:13:01 -06:00
mv $NAME/fennel.lua opt/
2023-03-07 16:57:14 -06:00
rm -rf $NAME*