From 330d328de9b915e09a8cfbac6c0e21eabeedf52d Mon Sep 17 00:00:00 2001 From: muathye Date: Thu, 14 Dec 2023 21:54:10 +0300 Subject: [PATCH] chore: update linker command --- bin/linker | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/linker b/bin/linker index 3df1e0f..fd21e83 100644 --- a/bin/linker +++ b/bin/linker @@ -45,8 +45,8 @@ class SymlinkMaker if (symlink($targetFile, $symlinkFile)) { echo Colors::GREEN . "INFO" . Colors::CYAN . " The [" . Colors::RESET . $symlinkFile . Colors::CYAN . "] link has been connected to [" . Colors::RESET . $targetFile . Colors::CYAN . "].\n" . Colors::RESET; // TODO: check laragon config to determine http or https schema and domain tld - echo Colors::GREEN . "Visit your website at: http://" . $symlinkFile . '.test' . Colors::RESET; - echo Colors::YELLOW . "Restart Laragon to see effect." . Colors::RESET; + echo Colors::CYAN . "Visit your website at: " . Colors::CYAN . "http://" . $dirName . ".test\n" . Colors::RESET; + echo Colors::YELLOW . "Restart Laragon to see effect.\n" . Colors::RESET; Config::reloadLaragon(); } else { echo Colors::RED . "ERROR" . Colors::RESET . " Failed to create symlink." . Colors::RESET;