From 06a0836d79cf644db5a5c6ac00b2155652110c91 Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Fri, 27 Jan 2017 10:58:32 -0800 Subject: [PATCH] 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. --- bin/flutter.bat | 1 + 1 file changed, 1 insertion(+) create mode 100644 bin/flutter.bat diff --git a/bin/flutter.bat b/bin/flutter.bat new file mode 100644 index 00000000000..757cf8221c7 --- /dev/null +++ b/bin/flutter.bat @@ -0,0 +1 @@ +@PowerShell.exe -ExecutionPolicy Bypass -Command "& '%~dpn0.ps1' %*"