11 lines
227 B
Python
11 lines
227 B
Python
# -*- python -*-
|
|
# ex: set filetype=python:
|
|
import importlib
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.expanduser("~/git/blender-devops/buildbot"))
|
|
|
|
import setup
|
|
importlib.reload(setup)
|
|
BuildmasterConfig = setup.setup()
|