mktools/install.sh

15 lines
210 B
Bash
Raw Normal View History

2023-08-21 19:08:40 -06:00
#!/bin/bash
set -e
INC_DIR=.inc
INC_FILES="webdav "
main() {
mkdir -p "$INC_DIR"
for f in $INC_FILES; do
curl -o "$INC_DIR/$f.mk" https://forge.cadoles.com/Cadoles/make-tools
done
}
main