pablovela5620 commited on
Commit
dce517a
1 Parent(s): 2e3c4e2

fix pixi path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def check_and_install_pixi():
12
  subprocess.check_call("curl -fsSL https://pixi.sh/install.sh | bash", shell=True)
13
 
14
  def pixi_run():
15
- command = "pixi run app"
16
  subprocess.check_call(command, shell=True)
17
 
18
  if __name__ == "__main__":
 
12
  subprocess.check_call("curl -fsSL https://pixi.sh/install.sh | bash", shell=True)
13
 
14
  def pixi_run():
15
+ command = f"{PIXI_PATH} run app"
16
  subprocess.check_call(command, shell=True)
17
 
18
  if __name__ == "__main__":