from pathlib import Path

# this script makes sure the parent directory is 'linux', which indicates we are in the correct directory. If we descend
# any lower, relative paths will break

path = Path.cwd()
parent = path.parent.name

if parent != 'pub-bootstrap':
    print("False")
else:
    print("True")
