diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-07-06 09:47:02 +0100 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-07-06 11:59:07 +0100 |
commit | 43293b8c3210003c9e5b5b4a662f0fdb874353b7 (patch) | |
tree | b4c2bba1cdc1200cbdb7bc4796d023cbd95f1a44 /sync-all | |
parent | 7283d8ae6a3280c2be32b39665fce393eb04bc44 (diff) | |
download | haskell-43293b8c3210003c9e5b5b4a662f0fdb874353b7.tar.gz |
fix bug: check_out_flag should be checked_out_tree
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -272,7 +272,7 @@ sub scmall { # Use the "remote" structure for bare git repositories $localpath = ($bare_flag && $scm eq "git") ? $$line{"remotepath"} : $$line{"localpath"}; - $remotepath = ($checked_out_flag) ? + $remotepath = ($checked_out_tree) ? $$line{"localpath"} : $$line{"remotepath"}; # Check the SCM is OK as early as possible |