diff options
author | 2025-01-22 16:48:42 +0100 | |
---|---|---|
committer | 2025-01-22 16:48:42 +0100 | |
commit | 8360523f9fedd19b70abfd5fa6ed239655ea49e0 (patch) | |
tree | 9d585e350190d8f57d7723a80a0deef7e6342ed1 /install.zsh | |
parent | 9e36977b9d4641c9fc67eee9b36bdfa8a3b85bbd (diff) | |
download | zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.gz zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.bz2 zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.tar.lz zuwu-8360523f9fedd19b70abfd5fa6ed239655ea49e0.zip |
feat: proper copyright and license declaration
Diffstat (limited to 'install.zsh')
-rwxr-xr-x | install.zsh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/install.zsh b/install.zsh index 223089b..755e1fe 100755 --- a/install.zsh +++ b/install.zsh @@ -1,4 +1,22 @@ #!/usr/bin/env zsh + +# +# Installs the zuwu microframework onto the user's device. +# +# This file is part of zuwu - a general-purpose zsh initialization and utility framework. +# +# Authors: +# memdmp <https://mem.estrogen.zone/> +# + +# +# Copyright (c) 2025 the above listed authors +# +# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# + set -e if [[ "$ZSH_NAME" == "" ]]; then |