2021-06-26 01:48:43 +08:00
|
|
|
#!/usr/bin/env python3
|
2023-12-14 03:38:41 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-06-26 01:48:43 +08:00
|
|
|
# Copyright 2021 The Meson development team
|
|
|
|
|
|
|
|
# Hack to make relative imports to mlog possible
|
|
|
|
from pathlib import Path
|
|
|
|
import sys
|
|
|
|
root = Path(__file__).absolute().parents[1]
|
|
|
|
sys.path.insert(0, str(root))
|
|
|
|
|
|
|
|
# Now run the actual code
|
|
|
|
from refman.main import main
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
raise SystemExit(main())
|