Răsfoiți Sursa

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 ani în urmă
părinte
comite
8f45bfdbc1
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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()