[Updated] D10396: test-lfs: avoid a bashism when spawning the server
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Thu Apr 15 00:41:19 UTC 2021
Closed by commit rHG7a9b74e98240: test-lfs: avoid a bashism when spawning the server (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10396?vs=26852&id=26905
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10396/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D10396
AFFECTED FILES
tests/test-lfs-test-server.t
CHANGE DETAILS
diff --git a/tests/test-lfs-test-server.t b/tests/test-lfs-test-server.t
--- a/tests/test-lfs-test-server.t
+++ b/tests/test-lfs-test-server.t
@@ -17,7 +17,7 @@
#endif
#if no-windows git-server
- $ lfs-test-server &> lfs-server.log &
+ $ lfs-test-server > lfs-server.log 2>&1 &
$ echo $! >> $DAEMON_PIDS
#endif
@@ -890,7 +890,7 @@
$ mkdir $TESTTMP/lfs-server2
$ cd $TESTTMP/lfs-server2
#if no-windows git-server
- $ lfs-test-server &> lfs-server.log &
+ $ lfs-test-server > lfs-server.log 2>&1 &
$ echo $! >> $DAEMON_PIDS
#endif
To: marmoute, #hg-reviewers, pulkit
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210415/671bb96b/attachment-0002.html>
More information about the Mercurial-patches
mailing list