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__':
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()

@ -328,8 +328,6 @@ $commands_app
"
# run?
. $path_bin/komrade-app
if [ "$machine" = "Mac" ]
then
@ -337,5 +335,16 @@ then
unzip "$path_bin/Komrade.app.zip"
# 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."
fi
Loading…
Cancel
Save