mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
fix -S; it should accept windows-specific filenames.
This commit is contained in:
parent
3d05d84d87
commit
807aa62ade
@ -171,7 +171,10 @@ for opt, arg in opts:
|
|||||||
while len(tokens) < 4:
|
while len(tokens) < 4:
|
||||||
tokens.append('')
|
tokens.append('')
|
||||||
certificate, chain, pkey, password = tokens[:4]
|
certificate, chain, pkey, password = tokens[:4]
|
||||||
signParams.append((certificate, chain, pkey, password))
|
signParams.append((Filename.fromOsSpecific(certificate),
|
||||||
|
Filename.fromOsSpecific(chain),
|
||||||
|
Filename.fromOsSpecific(pkey),
|
||||||
|
Filename.fromOsSpecific(password)))
|
||||||
elif opt == '-D':
|
elif opt == '-D':
|
||||||
allowPythonDev = True
|
allowPythonDev = True
|
||||||
elif opt == '-u':
|
elif opt == '-u':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user