On Tue, Apr 3, 2018 at 4:38 AM, Jens Krüger <Jens.Krueger@xxxxxxxxxxx> wrote: > Am 03.04.2018 um 10:16 schrieb Eric Sunshine: >> Using the "out" file you attached, can you show the output of these >> commands? >> grep "^worktree.*/destination" out >> echo $? >> grep "^worktree.*/source" out >> echo $? >> I'd expect the first $? to report 0 and the second 1 in a working >> installation. > > Both of them return 0, but I guess I found the problem. The second > 'grep' call returned the following output: > > worktree /home/jkrueger/sources/git/t/trash directory.t2028-worktree-move > worktree /home/jkrueger/sources/git/t/trash > directory.t2028-worktree-move/elsewhere > worktree /home/jkrueger/sources/git/t/trash > directory.t2028-worktree-move/some-dir/destination > > If I move my checkout into another directory not containing 'source' in > the path it will work. Okay, thanks for diagnosing the problem. We can fix the test by tightening the regex to also anchor with '$' so that it won't be fooled like that.