fix
This commit is contained in:
parent
3f2ec114d4
commit
bd428ccb7a
2 changed files with 2 additions and 2 deletions
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
|||
default_task = "publish"
|
||||
|
||||
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"
|
||||
description = __doc__
|
||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||
|
|
|
@ -41,7 +41,7 @@ class DevopsDockerBuild(DevopsBuild):
|
|||
return '/'.join(filter_none(mylist)) + '/'
|
||||
|
||||
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(
|
||||
__name__, "src/main/resources/docker/" + name)
|
||||
with open(self.build_path() + '/' + name, "w") as output_file:
|
||||
|
|
Loading…
Reference in a new issue