diff options
author | skalsin <skalsin@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
commit | 0ec5f3106fcb5e342ec13cdfad678bf4633580d5 (patch) | |
tree | 201e92c5c9e5d0123fc5f7be509649e36596dd0b /build/scripts | |
parent | a693106aae8a3a3c7236a4ae953058a9611d7a92 (diff) | |
download | ydb-0ec5f3106fcb5e342ec13cdfad678bf4633580d5.tar.gz |
Restoring authorship annotation for <skalsin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/scripts')
-rw-r--r-- | build/scripts/wrapper.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/scripts/wrapper.py b/build/scripts/wrapper.py index 1e9d7955a5..d66bf83324 100644 --- a/build/scripts/wrapper.py +++ b/build/scripts/wrapper.py @@ -1,11 +1,11 @@ -import os -import sys - - +import os +import sys + + if __name__ == '__main__': path = sys.argv[1] - + if path[0] != '/': path = os.path.join(os.path.dirname(__file__), path) - + os.execv(path, [path] + sys.argv[2:]) |