[env] remove --dist-strip command

This commit is contained in:
Meco Man
2023-09-14 18:40:45 -04:00
parent e7c3ca61fd
commit c19c907b62
3 changed files with 1 additions and 136 deletions

View File

@@ -906,7 +906,7 @@ def GenTargetProject(program = None):
ESPIDFProject(Env, Projects)
def EndBuilding(target, program = None):
from mkdist import MkDist, MkDist_Strip
from mkdist import MkDist
need_exit = False
@@ -937,9 +937,6 @@ def EndBuilding(target, program = None):
if GetOption('make-dist') and program != None:
MkDist(program, BSP_ROOT, Rtt_Root, Env, project_name, project_path)
need_exit = True
if GetOption('make-dist-strip') and program != None:
MkDist_Strip(program, BSP_ROOT, Rtt_Root, Env)
need_exit = True
if GetOption('make-dist-ide') and program != None:
import subprocess
if not isinstance(project_path, str) or len(project_path) == 0 :