From 8606a5e18c242480ba59fef258e775a434791939 Mon Sep 17 00:00:00 2001
From: hexboy <hexboy2011@gmail.com>
Date: Thu, 17 Oct 2024 17:52:00 +0330
Subject: [PATCH] make build.gradle.kts config single line

---
 src/index.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/index.ts b/src/index.ts
index 87802c7..f9c5474 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -38,7 +38,7 @@ app.listen(PORT, () => {
   console.log('\nadd this ⬇️  in build.gradle.kts');
   console.log(
     chalk.green(
-      `maven {\n  url = uri("http://127.0.0.1:${PORT}/${DEFAULT_PATH}")\n  isAllowInsecureProtocol = true\n}`
+      `maven { url = uri("http://127.0.0.1:${PORT}/${DEFAULT_PATH}"); isAllowInsecureProtocol = true }`
     )
   );