decryption-error-fix
quadrismegistus 4 years ago
parent efc8f779d2
commit 654dde0451

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -782,7 +782,11 @@ class MainApp(MDApp, Logger):
if __name__ == '__main__': if __name__ == '__main__':
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()
loop.run_until_complete(MainApp().app_func()) try:
loop.run_until_complete(MainApp().app_func())
except TypeError:
print('\n\nGoodbye.\n')
pass
loop.close() loop.close()

@ -328,8 +328,6 @@ $commands_app
" "
# run?
. $path_bin/komrade-app
if [ "$machine" = "Mac" ] if [ "$machine" = "Mac" ]
then then
@ -337,5 +335,16 @@ then
unzip "$path_bin/Komrade.app.zip" unzip "$path_bin/Komrade.app.zip"
# cp "$path_bin/Komrade.app" /Applications/ # cp "$path_bin/Komrade.app" /Applications/
echo "You may run the app by looking for 'Komrade.app' in your /Applications folder."
fi
# run?
. $path_bin/komrade-app
if [ "$machine" = "Mac" ]
then
echo "You may run the app by looking for 'Komrade.app' in your /Applications folder." echo "You may run the app by looking for 'Komrade.app' in your /Applications folder."
fi fi
Loading…
Cancel
Save