mirror of
https://github.com/archlinux-jerry/buildbot
synced 2024-11-05 05:12:24 +08:00
13 lines
269 B
Python
13 lines
269 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
import os
|
|
import logging
|
|
from pathlib import Path
|
|
|
|
from utils import print_exc_plus
|
|
|
|
logger = logging.getLogger(f'buildbot.{__name__}')
|
|
|
|
abspath=os.path.abspath(__file__)
|
|
abspath=os.path.dirname(abspath)
|
|
os.chdir(abspath)
|