Skip to content

Commit d5e3f0c

Browse files
authored
return exit code from quarto.run
1 parent 285bb18 commit d5e3f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quarto_cli/quarto.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
def run():
66
command = os.path.join(os.path.dirname(__file__), "bin", "quarto")
7-
sp.call([command] + sys.argv[1:])
7+
return sp.call([command] + sys.argv[1:])

0 commit comments

Comments
 (0)