mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -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():
|
def unpack():
|
||||||
"""unpacks the tar yielded by `data`"""
|
"""unpacks the tar yielded by `data`"""
|
||||||
name = "pe-copyparty"
|
name = "pe-copyparty."
|
||||||
|
try:
|
||||||
|
name += str(os.geteuid())
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
tag = "v" + str(STAMP)
|
tag = "v" + str(STAMP)
|
||||||
top = tempfile.gettempdir()
|
top = tempfile.gettempdir()
|
||||||
opj = os.path.join
|
opj = os.path.join
|
||||||
|
|
Loading…
Reference in a new issue