From 2874e718203234c55a70e4e7fc62e027f4debd25 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Thu, 18 Jun 2020 14:30:20 -0300 Subject: [PATCH] chore(bundler) msi is no longer experimental version updates --- cli/tauri-bundler/src/bundle/msi_bundle.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/cli/tauri-bundler/src/bundle/msi_bundle.rs b/cli/tauri-bundler/src/bundle/msi_bundle.rs index 45db5b3e1..aa672d5ae 100644 --- a/cli/tauri-bundler/src/bundle/msi_bundle.rs +++ b/cli/tauri-bundler/src/bundle/msi_bundle.rs @@ -8,8 +8,6 @@ use std::path::PathBuf; // Runs all of the commands to build the MSI installer. // Returns a vector of PathBuf that shows where the MSI was created. pub fn bundle_project(settings: &Settings) -> crate::Result> { - common::print_warning("MSI bundle support is still experimental.")?; - let wix_path = PathBuf::from("./WixTools"); if !wix_path.exists() {