Skip to content

Commit

Permalink
fix: py27 subprocess (#296)
Browse files Browse the repository at this point in the history
Signed-off-by: Keming <kemingy94@gmail.com>
  • Loading branch information
kemingy committed Jun 13, 2022
1 parent 5cf52ec commit cfe65fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion envd/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

def envd():
path = resource_filename("envd", "bin/envd")
subprocess.run([path] + sys.argv[1:])
subprocess.check_call([path] + sys.argv[1:])

0 comments on commit cfe65fe

Please sign in to comment.