Просмотр исходного кода

do not use pipenv in build (#159)

Co-authored-by: Fred Lefévère-Laoide <Fred.Lefevere-Laoide@Taipy.io>
Fred Lefévère-Laoide 2 лет назад
Родитель
Сommit
8f45bfdbc1
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      gui/scripts/install.js

+ 1 - 1
gui/scripts/install.js

@@ -4,7 +4,7 @@ const { existsSync, writeFileSync, appendFileSync } = require("fs");
 const { sep } = require("path");
 
 const getGuiEnv = () =>
-  execSync(process.platform === "win32" ? 'pipenv run pip show taipy-gui | findStr "Location:"' : "pipenv run pip show taipy-gui | grep Location:", {
+  execSync(process.platform === "win32" ? 'pip show taipy-gui | findStr "Location:"' : "pip show taipy-gui | grep Location:", {
     stdio: ["pipe", "pipe", "pipe"],
   })
     .toString()