diff options
author | EuAndreh <eu@euandre.org> | 2022-10-21 18:48:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-21 18:48:35 -0300 |
commit | bb23752c782f90263c06d1fea534fa09d2372240 (patch) | |
tree | cc12e23c06de4f4b27661b7f8c2d2d90ea405f54 /bin | |
parent | bin/update: Add more explicit warning when vcs fetch fails (diff) | |
download | dotfiles-bb23752c782f90263c06d1fea534fa09d2372240.tar.gz dotfiles-bb23752c782f90263c06d1fea534fa09d2372240.tar.xz |
bin/vcs: Don't wait more than 5 minutes for CVS locks
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vcs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ fossil_fetch() { } cvs_fetch() { - cvs update + timeout 300 cvs update } |