builder.braak.pro/buildbot/master.cfg
2024-11-20 16:13:44 +01:00

15 lines
363 B
Python

# -*- python -*-
# ex: set filetype=python:
import importlib
import os
import sys
# Add the "config" directory to the Python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "config"))
# Import the setup module from the "config" directory
import setup
importlib.reload(setup)
# Use the setup module as intended
BuildmasterConfig = setup.setup()