From 9e98e8f7dd931c8cc66f1fd023e2a6b13848b81b Mon Sep 17 00:00:00 2001 From: Kingkor Roy Tirtho Date: Fri, 13 May 2022 11:16:08 +0600 Subject: [PATCH] [CD] executable not moved to choco-struct fix --- Makefile | 2 +- lib/helpers/server_ipc.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 08f45a28..b7e8029d 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ inno: powershell .\build\iscc\iscc.exe scripts\windows-setup-creator.iss choco: - powershell cp dist\**\spotube-*-windows-setup.exe choco-struct\tools + powershell cp dist\Spotube-windows-x86_64-setup.exe choco-struct\tools powershell choco pack .\choco-struct\spotube.nuspec --outputdirectory dist apk: diff --git a/lib/helpers/server_ipc.dart b/lib/helpers/server_ipc.dart index f44d1dc5..2647c6a0 100644 --- a/lib/helpers/server_ipc.dart +++ b/lib/helpers/server_ipc.dart @@ -21,7 +21,7 @@ Future connectIpc(String authUri, String redirectUri) async { if (code != null) { request.response ..statusCode = HttpStatus.ok - ..write("Authentication successful") + ..write("Authentication successful. Now Go back to Spotube") ..close(); return "$redirectUri?code=$code"; } else {