mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-24 06:02:44 +00:00
Remove multi-type variable
Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
parent
8eaeb38b3a
commit
93ee016836
@ -85,9 +85,8 @@ def get_src_files(since: Optional[str]) -> List[str]:
|
|||||||
# Get a list of environment vars that git sets
|
# Get a list of environment vars that git sets
|
||||||
git_env_vars = subprocess.check_output(["git", "rev-parse", "--local-env-vars"],
|
git_env_vars = subprocess.check_output(["git", "rev-parse", "--local-env-vars"],
|
||||||
universal_newlines=True)
|
universal_newlines=True)
|
||||||
git_env_vars = git_env_vars.split()
|
|
||||||
# Remove the vars from the environment
|
# Remove the vars from the environment
|
||||||
for var in git_env_vars:
|
for var in git_env_vars.split():
|
||||||
framework_env.pop(var, None)
|
framework_env.pop(var, None)
|
||||||
|
|
||||||
output = subprocess.check_output(["git", "-C", "framework", "ls-files"]
|
output = subprocess.check_output(["git", "-C", "framework", "ls-files"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user