mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-10 06:40:16 +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
|
||||
git_env_vars = subprocess.check_output(["git", "rev-parse", "--local-env-vars"],
|
||||
universal_newlines=True)
|
||||
git_env_vars = git_env_vars.split()
|
||||
# Remove the vars from the environment
|
||||
for var in git_env_vars:
|
||||
for var in git_env_vars.split():
|
||||
framework_env.pop(var, None)
|
||||
|
||||
output = subprocess.check_output(["git", "-C", "framework", "ls-files"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user