mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 01:07:51 -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:
|
||||
tokens.append('')
|
||||
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':
|
||||
allowPythonDev = True
|
||||
elif opt == '-u':
|
||||
|
Loading…
x
Reference in New Issue
Block a user