mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-24 11:15:33 +03:00
updated spec file
This commit is contained in:
parent
4730abfe44
commit
924218c1ed
@ -24,6 +24,12 @@ import errno
|
||||
from glob import glob
|
||||
from getpass import getpass
|
||||
|
||||
|
||||
WIN = sys.platform in ['win32', 'cygwin']
|
||||
OSX = sys.platform in ['darwin']
|
||||
|
||||
|
||||
|
||||
######################
|
||||
# #
|
||||
# USER CONFIGURATION #
|
||||
@ -32,15 +38,16 @@ from getpass import getpass
|
||||
|
||||
NAME = "Yubico Authenticator"
|
||||
PROJECT_PATH = "C:\\Users\\v\\Documents\\Git\\yubioath-desktop\\yubicoauthenticator"
|
||||
ICON = "yubico.ico"
|
||||
|
||||
#windows icon
|
||||
if WIN:
|
||||
ICON = "yubico.ico"
|
||||
#osx icon
|
||||
if OSX:
|
||||
ICON = "yubioath-48.icns"
|
||||
### END OF USER CONFIGURATION ###
|
||||
|
||||
|
||||
|
||||
WIN = sys.platform in ['win32', 'cygwin']
|
||||
OSX = sys.platform in ['darwin']
|
||||
|
||||
#if WIN:
|
||||
# ICON = os.path.join('graphics\\graphics', 'yubico.ico')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user