File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tools/azure-sdk-tools/packaging_tools Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
from subprocess import check_call , CalledProcessError , getoutput
8
8
from .generate_utils import return_origin_path
9
9
from packaging .version import Version
10
-
10
+ from . import build_packaging
11
11
from .change_log import main as change_log_main
12
12
13
13
DEFAULT_DEST_FOLDER = "./dist"
@@ -211,7 +211,7 @@ def edit_toml(content: List[str]):
211
211
else :
212
212
_LOGGER .info (f"{ os .getcwd ()} /{ toml } does not exist" )
213
213
214
- check_call ( f"python -m packaging_tools --build-conf { self .whole_package_name } " , shell = True )
214
+ build_packaging ( output_folder = "." , packages = [ self .whole_package_name ], build_conf = True )
215
215
_LOGGER .info ("packaging_tools --build-conf successfully" )
216
216
217
217
def sdk_code_path (self ) -> str :
You can’t perform that action at this time.
0 commit comments