This commit is contained in:
jem 2020-04-18 15:19:40 +02:00
parent 3f2ec114d4
commit bd428ccb7a
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ use_plugin("python.distutils")
default_task = "publish" default_task = "publish"
name = "ddadevops" name = "ddadevops"
version = "0.6.0.dev9" version = "0.6.0.dev11"
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud" summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
description = __doc__ description = __doc__
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")] authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]

View file

@ -41,7 +41,7 @@ class DevopsDockerBuild(DevopsBuild):
return '/'.join(filter_none(mylist)) + '/' return '/'.join(filter_none(mylist)) + '/'
def copy_build_resource_file_from_package(self, name): def copy_build_resource_file_from_package(self, name):
run('mkdir -p ' + self.build_path(), shell=True) run('mkdir -p ' + self.build_path() + '/image/resources', shell=True)
my_data = resource_string( my_data = resource_string(
__name__, "src/main/resources/docker/" + name) __name__, "src/main/resources/docker/" + name)
with open(self.build_path() + '/' + name, "w") as output_file: with open(self.build_path() + '/' + name, "w") as output_file: