You've already forked OpenUxAS-bootstrap
mirror of
https://github.com/AdaCore/OpenUxAS-bootstrap.git
synced 2026-02-12 13:07:23 -08:00
Support printing environments on a single line, suitable for inclusing before a command. This is useful for integration with Make. Also update the README, anticipating changes in OpenUxAS that will use this feature. Fix formatting issue in anod and paths
21 lines
277 B
Python
21 lines
277 B
Python
import os
|
|
|
|
__ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
REPO_DIR = os.path.realpath(
|
|
os.path.join(
|
|
__ROOT_DIR,
|
|
"..",
|
|
"..",
|
|
)
|
|
)
|
|
SPEC_DIR = os.path.join(
|
|
REPO_DIR,
|
|
"specs",
|
|
)
|
|
|
|
SBX_DIR = os.path.join(
|
|
REPO_DIR,
|
|
"sbx",
|
|
)
|