Fix host_os literal for windows (#4568)

* Fix host_os literal for windows

* Fix slashes
This commit is contained in:
Alexander Aprelev 2018-01-18 15:03:06 -08:00 committed by GitHub
parent fc5fd6e357
commit 3e49d8a815
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
DEPS
View File

@ -444,10 +444,10 @@ hooks = [
{
'name': 'frontend_server_packages',
'pattern': '.',
'condition': 'host_os == "windows"',
'condition': 'host_os == "win"',
'cwd': 'src/flutter/frontend_server/',
'action': [
'../../../src/third_party/dart/tools/sdks/win/dart-sdk/bin/pub.bat', 'get',
'..\\..\\..\\src\\third_party\\dart\\tools\\sdks\\win\\dart-sdk\\bin\\pub.bat', 'get',
],
},
{