This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-ponymail-unit-tests.git
The following commit(s) were added to refs/heads/master by this push:
new 43978cf Need to escape sed escapes
43978cf is described below
commit 43978cf65b90b661592c9667f0fc038625d88f23
Author: Sebb <[email protected]>
AuthorDate: Fri Aug 21 11:35:56 2020 +0100
Need to escape sed escapes
---
.github/workflows/unittest.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml
index 6f32d19..032f6ef 100644
--- a/.github/workflows/unittest.yml
+++ b/.github/workflows/unittest.yml
@@ -32,6 +32,6 @@ jobs:
- name: Test with Ponymail Unit tests
run: |
cd ponymail-0.10
- sed -e 's/#cropout:.*/cropout:
(\w+\.\w+)\.incubator\.apache\.org \1.apache.org/' tools/ponymail.cfg.sample
>tools/ponymail.cfg
+ sed -e 's/#cropout:.*/cropout:
(\\w+\\.\\w+)\\.incubator\\.apache\\.org \\1.apache.org/'
tools/ponymail.cfg.sample >tools/ponymail.cfg
cd ..
python runall.py --root ponymail-0.10