fix sfx keepalive across unix users

This commit is contained in:
ed 2022-09-16 22:19:59 +02:00
parent 0dbeb010cf
commit 5152f37ec8

View file

@ -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