diff options
author | kakabba <kakabba@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
commit | c8e3995898c443e78266f7420aac5fb3da15d413 (patch) | |
tree | a530e068cc107e227deccc80722204db63a4d75d /build/scripts/run_llvm_dsymutil.py | |
parent | 110a978b66fe6c0916572df51cfead2a9b647174 (diff) | |
download | ydb-c8e3995898c443e78266f7420aac5fb3da15d413.tar.gz |
Restoring authorship annotation for <kakabba@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/scripts/run_llvm_dsymutil.py')
-rw-r--r-- | build/scripts/run_llvm_dsymutil.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/scripts/run_llvm_dsymutil.py b/build/scripts/run_llvm_dsymutil.py index 4f43362ad98..88e94306c34 100644 --- a/build/scripts/run_llvm_dsymutil.py +++ b/build/scripts/run_llvm_dsymutil.py @@ -1,11 +1,11 @@ -import os -import sys -import subprocess - - +import os +import sys +import subprocess + + if __name__ == '__main__': with open(os.devnull, 'w') as fnull: p = subprocess.Popen(sys.argv[1:], shell=False, stderr=fnull, stdout=sys.stdout) - + p.communicate() sys.exit(p.returncode) |