Skip to content

Commit

Permalink
[pull_all_modules.sh] +MFEKpathops
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlcctrlv authored Dec 25, 2022
1 parent 8eb89d4 commit c792f7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blob/pull_all_modules.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
#!/bin/bash
# Pull all current MFEK modules! Latest version @ https://github.com/MFEK/docs/

MODULES=("glif" "stroke" "metadata" "init" "about")
MODULES=("glif" "stroke" "pathops" "metadata" "init" "about")

for m in ${MODULES[@]}; do
if [ ! -d MFEK"$m" ]; then
git clone https://github.com/MFEK/"$m" MFEK"$m"
else
cd MFEK"$m";
git pull --ff-only
cargo build
cd ..
fi
done

0 comments on commit c792f7c

Please sign in to comment.