Skip to content

Commit e7a6bb0

Browse files
committed
buckw: pass back the exit code given by buck
1 parent f081348 commit e7a6bb0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

buckw

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import hashlib
44
import os
55
import os.path
66
import requests
7-
import shutil
87
import stat
98
import sys
109
from subprocess import call
@@ -62,5 +61,5 @@ os.chmod(buck_pex, st.st_mode | stat.S_IEXEC)
6261
sys.argv.pop(0)
6362
args = ["python", buck_pex]
6463
args.extend(sys.argv)
65-
call(args)
64+
sys.exit(call(args))
6665

0 commit comments

Comments
 (0)