diff --git a/Deploy/prepare b/Deploy/prepare index 33288d06e..edd31ea95 100755 --- a/Deploy/prepare +++ b/Deploy/prepare @@ -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'] \ diff --git a/migration/Dockerfile b/migration/Dockerfile index eb961aac9..507342170 100644 --- a/migration/Dockerfile +++ b/migration/Dockerfile @@ -18,6 +18,6 @@ COPY ./ ./ COPY ./migration.cfg ./ -RUN ./install.sh +RUN ./prepare.sh ENTRYPOINT ["./run.sh"] diff --git a/migration/install.sh b/migration/prepare.sh similarity index 100% rename from migration/install.sh rename to migration/prepare.sh