fix missing function run in build.py

This commit is contained in:
ansgarz 2024-02-02 12:03:04 +01:00
parent a4c561649a
commit 2cb39a82b8

View file

@ -1,5 +1,5 @@
import os import os
from os import environ from subprocess import run
from pybuilder.core import task, init from pybuilder.core import task, init
from ddadevops import * from ddadevops import *
@ -23,7 +23,7 @@ def initialize0(project):
@init(environments=["artifacts"]) @init(environments=["artifacts"])
def initialize1(project): def initialize1(project):
""" """
prompt for gopass if no artifacts need to be uploaded prompt for gopass if artifacts need to be uploaded
usage: with option "-E artifacts" , e.g. "pyb -E artifacts dev" usage: with option "-E artifacts" , e.g. "pyb -E artifacts dev"
""" """
del os.environ["RELEASE_ARTIFACT_TOKEN"] del os.environ["RELEASE_ARTIFACT_TOKEN"]