Skip to content

Commit 43b86dd

Browse files
authored
Merge pull request #3 from PhilReinhold/main
Return exit code from quarto.run
2 parents aea6993 + d5e3f0c commit 43b86dd

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)