diff options
author | Dmitry Kopylov <kopylovd@gmail.com> | 2022-02-10 16:48:18 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:18 +0300 |
commit | b2f5101486cc0de2e979c8ba9ada2109785bf5fd (patch) | |
tree | affe28b840816b505db0467f2285b01c89c04247 /build/scripts/wrapper.py | |
parent | e9b28b5aad71453a4637b70dde02e801e4147a2a (diff) | |
download | ydb-b2f5101486cc0de2e979c8ba9ada2109785bf5fd.tar.gz |
Restoring authorship annotation for Dmitry Kopylov <kopylovd@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'build/scripts/wrapper.py')
-rw-r--r-- | build/scripts/wrapper.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build/scripts/wrapper.py b/build/scripts/wrapper.py index 1e9d7955a52..7259ef58643 100644 --- a/build/scripts/wrapper.py +++ b/build/scripts/wrapper.py @@ -2,10 +2,10 @@ import os import sys -if __name__ == '__main__': - path = sys.argv[1] +if __name__ == '__main__': + path = sys.argv[1] - if path[0] != '/': - path = os.path.join(os.path.dirname(__file__), path) + if path[0] != '/': + path = os.path.join(os.path.dirname(__file__), path) - os.execv(path, [path] + sys.argv[2:]) + os.execv(path, [path] + sys.argv[2:]) |