We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d477060 commit 9d99eb6Copy full SHA for 9d99eb6
1 file changed
Makefile
@@ -47,8 +47,9 @@ shell:
47
.PHONY: test
48
test:
49
docker run --rm -v "$${PWD}/test:/test" "$$(docker build -q .)" sh -c \
50
- 'cp -r /test/before /tmp/actual \
51
- && cp -r /test/after /tmp/expected \
52
- && /entry /tmp/actual/* \
53
- && diff -r /tmp/expected /tmp/actual \
+ 'cd /tmp \
+ && cp -r /test/before actual \
+ && cp -r /test/after expected \
+ && /entry actual/* \
54
+ && diff -r expected actual \
55
&& echo "All tests passed!"'
0 commit comments