mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 00:58:31 +00:00
Previous commit added support for python3 in criu-coredump. For convenience, add two files (coredump-python2 and coredump-python3) that start criu-coredump with respective python version. Edit env.sh accordingly. Signed-off-by: Andrey Vyazovtsev <viazovtsev.av@phystech.edu>
6 lines
85 B
Python
Executable file
6 lines
85 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import coredump
|
|
|
|
if __name__ == '__main__':
|
|
coredump.main()
|