We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a1127 commit 11a2132Copy full SHA for 11a2132
1 file changed
os/win.ps1
@@ -150,6 +150,13 @@ function win_install_vlc() {
150
win_startmenu_add_lnk_to_allapps "$env:LOCALAPPDATA\Programs\$pkg_name\vlc.exe"
151
}
152
153
+function win_install_flutter() {
154
+ if (Test-Path "$env:LOCALAPPDATA\Programs\flutter\bin\flutter.bat") { return; }
155
+ $url = "https://storage.googleapis.com/flutter_infra_release/releases/stable/windows/flutter_windows_3.41.6-stable.zip"
156
+ win_install_exe_from_zip $url "$env:LOCALAPPDATA\Programs\flutter" "bin\flutter.bat"
157
+ win_path_add "$env:LOCALAPPDATA\Programs\flutter\bin"
158
+}
159
+
160
function win_install_obs() {
161
if (Test-Path "$env:LOCALAPPDATA\Programs\OBS\bin\64bit\obs64.exe") { return; }
162
$api_url = "https://api.github.com/repos/obsproject/obs-studio/releases/latest"
0 commit comments