Files
OpenUxAS-bootstrap/lib/anod/paths.py
M. Anthony Aiello 3369b6c6ac Improve printenv. (#5)
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
2020-09-01 09:44:41 -04:00

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",
)