mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Fix adding paths to the PATH env variable
This commit is contained in:
parent
ff2b061351
commit
3b3704710e
1 changed files with 1 additions and 1 deletions
|
@ -1835,7 +1835,7 @@ def add_to_env_path(path):
|
|||
paths = env['PATH'].split(os.pathsep)
|
||||
if path in paths:
|
||||
return
|
||||
paths += path
|
||||
paths.append(path)
|
||||
env['PATH'] = os.pathsep.join(paths)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue