We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c95d6d + 48b4303 commit 2ffe9d5Copy full SHA for 2ffe9d5
appveyor.yml
@@ -1,7 +1,7 @@
1
build: off
2
3
before_test:
4
-- curl -sS -ostack.zip -L --insecure http://www.stackage.org/stack/windows-i386
+- curl -sS -ostack.zip -L --insecure http://www.stackage.org/stack/windows-x86_64
5
- 7z x stack.zip stack.exe
6
7
clone_folder: "c:\\stack"
tests/run-tests.sh
@@ -26,8 +26,7 @@ function returnCodeShouldEqual() {
26
}
27
28
function shouldOutputTheSameIgnoringEol() {
29
- echo "$1" "$2"
30
- diff -u --ignore-space-change <(echo "$1") <(echo "$2") || exit 1
+ diff -u --ignore-space-change <(echo "$1" | sed -e 's/\.exe//') <(echo "$2" | sed -e 's/\.exe//') || exit 1
31
32
33
function outputShouldRoughlyMatchPatterns() {
0 commit comments