Add scripts for updating all deps

pull/459/head
connor rigby 2018-03-07 08:10:23 -08:00
parent 79eeb00bc7
commit 2813315b9e
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/bin/bash
TARGETS="rpi0 \
rpi3 \
bbb \
host
"
for target in $TARGETS; do
MIX_TARGET=$target mix do deps.get, deps.compile
done