Skip to content

Commit

Permalink
msi: fix wrong env path for Fluent Package Prompt (#606)
Browse files Browse the repository at this point in the history
* fix #605
* The current PATH includes `"`. It is unintended and causes some
  bugs. For example, fluent-diagtool does not work correctly
  because of this.

Signed-off-by: Daijiro Fukuda <[email protected]>
  • Loading branch information
daipom authored Dec 13, 2023
1 parent a33b1a6 commit d6e487a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fluent-package/msi/assets/fluent-package-prompt.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@echo off
set PATH="%~dp0\bin";%PATH%
set PATH="%~dp0";%PATH%
set "PATH=%~dp0\bin;%PATH%"
set "PATH=%~dp0;%PATH%"
title Fluent Package Command Prompt

0 comments on commit d6e487a

Please sign in to comment.