Add a .bat entry point for flutter tools (#7701)

Currently, this only calls out to the PowerShell Script, which is kind of slow. In the future, we will transfer more logic from PowerShell to cmd for faster starup time.
This commit is contained in:
Michael Goderbauer 2017-01-27 10:58:32 -08:00 committed by GitHub
parent 21434fcf1a
commit 06a0836d79

1
bin/flutter.bat Normal file
View file

@ -0,0 +1 @@
@PowerShell.exe -ExecutionPolicy Bypass -Command "& '%~dpn0.ps1' %*"