From 6f7479e3ab1a908dc4a14573c4fbe0a12c5b0a2b Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Thu, 24 Jul 2025 16:56:05 +0530 Subject: [PATCH] fix: update pr --- setup_wizard.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup_wizard.sh b/setup_wizard.sh index cb299c7..d9b7450 100755 --- a/setup_wizard.sh +++ b/setup_wizard.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash echocol() { @@ -77,7 +77,7 @@ fi # Ensure Foundry (cast & foundryup) is available for token mint/approve calls if ! command -v cast >/dev/null 2>&1; then - echocol "Foundry toolkit (cast) not found. Installing Foundry... \n" + echocol "\n Foundry toolkit (cast) not found. Installing Foundry... \n" curl -L https://foundry.paradigm.xyz | bash # Make the freshly installed binaries available in the current session export PATH="$HOME/.foundry/bin:$PATH"