Skip to content

Commit

Permalink
ci: fix typo in specifying cmake source dir
Browse files Browse the repository at this point in the history
As of cmake 13.3, users must specify a source directory. Due to an old
typo in the appvyeyor config, the source directory "./" was attached to
the end of the cache name.

This PR adds back the missing space between the initial cache file and
the source directory.

Signed-off-by: Robert Young <rwy0717@gmail.com>
  • Loading branch information
rwy7 committed Feb 12, 2019
1 parent 3cbabfa commit 37eafb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ install:
before_build:
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
- set PATH=C:\Python37;%PATH%
- cmd: cmake -Wdev -G "Visual Studio 11 2012" -DOMR_ENV_DATA32=ON -Ccmake\caches\Appveyor.cmake.
- cmd: cmake -Wdev -G "Visual Studio 11 2012" -DOMR_ENV_DATA32=ON -Ccmake\caches\Appveyor.cmake .

build:
project: omr.sln
Expand Down

0 comments on commit 37eafb7

Please sign in to comment.