Improve Bash Installer (#6)

- [+] chore: update copyright year to 2025 in LICENSE and install_docker.sh files
- [+] feat(install_docker.sh): add header print statements to the installer script

Reviewed-on: #6
Co-authored-by: H0llyW00dzZ <h0llyw00dzz@pm.me>
Co-committed-by: H0llyW00dzZ <h0llyw00dzz@pm.me>
This commit is contained in:
H0llyW00dzZ 2025-01-10 00:29:15 +00:00 committed by H0llyW00dzZ
parent c870ad9837
commit aa6bdeeba0
2 changed files with 12 additions and 2 deletions

View File

@ -1,7 +1,7 @@
BSD 3-Clause License
-----------
Copyright (c) 2024, H0llyW00dzZ / H0llyW00dz
Copyright (c) 2025, H0llyW00dzZ / H0llyW00dz
All rights reserved.
Redistribution and use in source and binary forms, with or without

View File

@ -1,10 +1,20 @@
# Copyright (c) 2024 H0llyW00dzZ All rights reserved.
# Copyright (c) 2025 H0llyW00dzZ All rights reserved.
#
# By accessing or using this software, you agree to be bound by the terms
# of the License Agreement, which you can find at LICENSE files.
#!/bin/bash
# Print the header
echo " ____ __ "
echo " / __ \____ _____/ /_____ _____ "
echo " / / / / __ \/ ___/ //_/ _ \/ ___/ "
echo " / /_/ / /_/ / /__/ ,< / __/ / "
echo "/_____/\____/\___/_/|_|\___/_/ "
echo " "
echo " Installer by H0llyW00dzZ "
echo " "
# Update the package index
sudo apt-get update