diff options
author | EuAndreh <eu@euandre.org> | 2023-03-03 13:13:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-03 13:13:47 -0300 |
commit | d709ded8105f55dfe441ebb196a4747bedcfc749 (patch) | |
tree | 6d716873c19e500fcbf0059b808667a5815b846c | |
parent | etc/nix/configuration.nix: Add tekton and aws-auth packages (diff) | |
download | dotfiles-d709ded8105f55dfe441ebb196a4747bedcfc749.tar.gz dotfiles-d709ded8105f55dfe441ebb196a4747bedcfc749.tar.xz |
bin/vcs: Consistent ordering of VCS types
-rwxr-xr-x | bin/vcs | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -4,11 +4,11 @@ set -eu TYPES=' git -mercurial +fossil bitkeeper darcs +mercurial cvs -fossil ' @@ -37,6 +37,10 @@ git_fetch() { git fetch --all "$@" } +fossil_fetch() { + fossil pull "$@" +} + darcs_fetch() { darcs fetch "$@" } @@ -45,10 +49,6 @@ mercurial_fetch() { hg pull "$@" } -fossil_fetch() { - fossil pull "$@" -} - cvs_fetch() { timeout 300 cvs update "$@" } |