this check was the wrong way around

This commit is contained in:
Matthew Leibowitz 2017-06-24 01:35:20 +04:00
Родитель 8136e15245
Коммит 732e40d5b3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -110,7 +110,7 @@ Task ("libs")
// TODO: remove this nonsense !!!
// Assembly signing is not supported on non-Windows ???, so we MUST NOT use the output
// See: https://github.com/dotnet/roslyn/issues/8210
if (IS_ON_CI && !IsRunningOnWindows ()) {
if (!IS_ON_CI || IsRunningOnWindows ()) {
CopyFileToDirectory ("./binding/SkiaSharp.NetStandard/bin/Release/SkiaSharp.dll", "./output/netstandard/");
CopyFileToDirectory ("./binding/HarfBuzzSharp.NetStandard/bin/Release/HarfBuzzSharp.dll", "./output/netstandard/");
CopyFileToDirectory ("./source/SkiaSharp.HarfBuzz/SkiaSharp.HarfBuzz.NetStandard/bin/Release/SkiaSharp.HarfBuzz.dll", "./output/netstandard/");