Configuration for my NixOS based systems and Home Manager
at master 14 lines 233 B view raw
1#!/usr/bin/env rc 2 3background=() 4for(repo in `{cat downstream}) { 5 echo Updating $repo 6 git -C $repo fetch --all --tags --prune --force & 7 background=($apid $background) 8} 9 10for (i in $background) { 11 wait $i 12} 13 14echo Done!