16 lines
258 B
Bash
Executable file
16 lines
258 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
source "${0:a:h}/lib/env"
|
|
source "$lib/git"
|
|
source "$lib/west"
|
|
|
|
echo '>>> updating dependencies'
|
|
{
|
|
pull birdsong-zmk
|
|
west-update $mod/birdsong-zmk
|
|
} &
|
|
west-update $app &
|
|
pull mcuboot &
|
|
pull birdsong-net &
|
|
pull birdsong-devices &
|
|
|
|
wait
|