Re: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread SZEDER Gábor
On Fri, Feb 08, 2019 at 03:11:29PM -0500, Todd Zullinger wrote: > It made me wonder how I had missed it in my own testing. > This one requires SHELL_PATH to be bash, while I only set > TEST_SHELL_PATH to bash for the improved -x tracing in the > fedora builds. Note that you don't need Bash to use

Re: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread Todd Zullinger
SZEDER Gábor wrote: > On Fri, Feb 08, 2019 at 05:48:27AM -0500, Randall S. Becker wrote: >> We have a few new breakages on the NonStop port in 2.21.0-rc0. The first is >> in t5403, as below: [...] >> The post-checkout hook is: >> #!/usr/local/bin/bash >> echo "$@" >$GIT_DIR/post-checkout.args >>

RE: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread Randall S. Becker
On February 8, 2019 6:10, SZEDER Gábor > On Fri, Feb 08, 2019 at 05:48:27AM -0500, Randall S. Becker wrote: > > We have a few new breakages on the NonStop port in 2.21.0-rc0. The first > is in t5403, as below: > > > > /home/git/git/t/trash > > directory.t5403-post-checkout-hook/clone3/.git/hooks/po

Re: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread SZEDER Gábor
On Fri, Feb 08, 2019 at 05:48:27AM -0500, Randall S. Becker wrote: > We have a few new breakages on the NonStop port in 2.21.0-rc0. The first is > in t5403, as below: > > /home/git/git/t/trash > directory.t5403-post-checkout-hook/clone3/.git/hooks/post-checkout: line 2: > $GIT_DIR/post-checkout

RE: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread Randall S. Becker
On February 8, 2019 5:56, Johannes Schindelin wrote: > To: Randall S. Becker > Cc: 'Junio C Hamano' ; g...@vger.kernel.org; 'Linux > Kernel' ; git-packag...@googlegroups.com > Subject: Re: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop) > > Hi Randall, >

[Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread Randall S. Becker
Hi All, We have a few new breakages on the NonStop port in 2.21.0-rc0. The first is in t5403, as below: /home/git/git/t/trash directory.t5403-post-checkout-hook/clone3/.git/hooks/post-checkout: line 2: $GIT_DIR/post-checkout.args: ambiguous redirect not ok 8 - post-checkout hook is triggered b

Re: [Breakage] Git v2.21.0-rc0 - t5403 (NonStop)

2019-02-08 Thread Johannes Schindelin
Hi Randall, On Fri, 8 Feb 2019, Randall S. Becker wrote: > This looks like it is a "bash thing" and $GIT_DIR might have to be in > quotes, and is not be specific to the platform. If I replace > > echo "$@" >$GIT_DIR/post-checkout.args > > with > > echo "$@" >"$GIT_DIR/post-checkout.args" > >