Skip to content

Commit

Permalink
Remove print banner
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanduplenskikh committed Nov 13, 2024
1 parent 8aba6d4 commit 9066e3b
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/Misc/layoutbin/installdependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,6 @@ function print_rhel6depricationmessage()
echo "You can check supported OS on the following documentation: https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md"
}

function print_banner()
{
echo "--------$1--------"
echo $2
echo "------------------------------"
}

if [ -e /etc/os-release ]
then
filepath='/etc/os-release'
Expand Down Expand Up @@ -327,7 +320,9 @@ then
elif [ -e /etc/azurelinux-release ]
then
echo "The current OS is Azure Linux based"
print_banner "Azure Linux Version" $(cat /etc/azurelinux-release)
echo "--------Azure Linux Version--------"
$(cat /etc/azurelinux-release)
echo "------------------------------"

command -v tdnf
if [ $? -eq 0 ]
Expand Down

0 comments on commit 9066e3b

Please sign in to comment.