mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
fix sfx keepalive across unix users
This commit is contained in:
parent
0dbeb010cf
commit
5152f37ec8
|
@ -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…
Reference in a new issue