File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ os: Visual Studio 2013
3
3
environment :
4
4
CTEST_OUTPUT_ON_FAILURE : 1
5
5
ruby_version : 22-x64
6
- TargetPath : sassc/bin/sassc
6
+ DefaultTargetName : sassc.exe
7
+ RelativePath : sassc\bin
7
8
matrix :
8
9
- Compiler : msvc
9
10
Config : Release
@@ -35,6 +36,8 @@ install:
35
36
36
37
build_script :
37
38
- ps : |
39
+ $env:OutDir = Join-Path $pwd.Path $env:RelativePath
40
+ $env:TargetPath = Join-Path $env:OutDir $env:DefaultTargetName
38
41
if ($env:Compiler -eq "mingw") {
39
42
mingw32-make -j4 sassc
40
43
} else {
@@ -70,7 +73,6 @@ test_script:
70
73
}
71
74
Write-Host "Explicitly testing the case when cwd has Cyrillic characters: " -nonewline
72
75
# See comments in gh-1774 for details.
73
- $env:TargetPath = Join-Path $pwd.Path $env:TargetPath
74
76
cd sass-spec/spec/libsass/Sáss-UŢF8/
75
77
&$env:TargetPath ./input.scss 2>&1>$null
76
78
if(-not($?)) {
You can’t perform that action at this time.
0 commit comments