소스 검색

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 년 전
부모
커밋
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()