mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 09:49:29 +02:00
fix sfx keepalive across unix users
This commit is contained in:
parent
0dbeb010cf
commit
5152f37ec8
1 changed files with 6 additions and 1 deletions
|
@ -222,7 +222,12 @@ def hashfile(fn):
|
|||
|
||||
def unpack():
|
||||
"""unpacks the tar yielded by `data`"""
|
||||
name = "pe-copyparty"
|
||||
name = "pe-copyparty."
|
||||
try:
|
||||
name += str(os.geteuid())
|
||||
except:
|
||||
pass
|
||||
|
||||
tag = "v" + str(STAMP)
|
||||
top = tempfile.gettempdir()
|
||||
opj = os.path.join
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue