This commit is contained in:
saga92 2016-05-09 18:50:04 +08:00
parent ba1c737d3b
commit 9cf2525c10
3 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ FNULL = open(os.devnull, 'w')
from functools import wraps
def stat_decorator(func):
#@wraps(func)
@wraps(func)
def check_wrapper(*args, **kwargs):
stat = func(*args, **kwargs)
message = "Generated configuration file: %s" % kwargs['path'] \

View File

@ -18,6 +18,6 @@ COPY ./ ./
COPY ./migration.cfg ./
RUN ./install.sh
RUN ./prepare.sh
ENTRYPOINT ["./run.sh"]