diff options
| author | Bert Belder <bertbelder@gmail.com> | 2018-11-01 13:05:21 +0100 |
|---|---|---|
| committer | Bert Belder <bertbelder@gmail.com> | 2018-11-01 13:34:16 +0100 |
| commit | b73b651612233dc61d006f3dbed7f29b063fa289 (patch) | |
| tree | d987ef27f14b308c076b39adae77643bc9d7c11a /.appveyor.yml | |
| parent | 9aa3640711f4ee103503dd2f3e3c28eddb0a8f80 (diff) | |
build: remove absolute path
Diffstat (limited to '.appveyor.yml')
| -rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8fb6971d0..b31b9d2ae 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -381,11 +381,7 @@ after_test: Select-String $trap -Path $files -SimpleMatch | where { # V8 took the liberty to produce an absolute path in their ninja # output. We can't do much about that, so we just ignore it. - $_.Line -notmatch "v8/builtins-generated/bytecodes-builtins-list.h" -and - # The absolute path to snapshot_libdeno_test.bin is passed to test_cc - # via pre-processor variable. It's absolute because we want to be able - # to execute test_cc from both the project root and the build root. - $_.Line -notmatch "snapshot_libdeno_test.bin" + $_.Line -notmatch "v8/builtins-generated/bytecodes-builtins-list.h" } | tee -Variable line_matches if ($line_matches) { $ctx = $line_matches.Line | |
