Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

FIX: typo, add done!

+9 -1
+9 -1
scripts/update-src
··· 1 1 #!/usr/bin/env rc 2 2 3 + background=() 3 4 for(repo in `{cat downstream}) { 4 5 echo Updating $repo 5 - git -C $repo fetch --all 6 + git -C $repo fetch --all & 7 + background=($apid $background) 6 8 } 9 + 10 + for (i in $background) { 11 + wait $i 12 + } 13 + 14 + echo Done!