Add whitespaces to important comments
This allows build scripts to trim comments while leaving important comments inside the script.
This commit is contained in:
parent
41109f2bf4
commit
09a4952082
1 changed files with 27 additions and 27 deletions
54
bashutils.sh
54
bashutils.sh
|
@ -1,28 +1,28 @@
|
|||
#!/usr/bin/env bash
|
||||
# STAROPENSOURCE BASHUTILS SOURCE FILE
|
||||
# Copyright (c) 2024 The StarOpenSource bashutils Authors
|
||||
# Licensed under the GNU Affero General Public License v3
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
# The copyright only protects the code from this line on until
|
||||
# the "BASHUTILS CODE ENDS HERE" line. This notice is provided
|
||||
# in case the bashutils script is embedded into a script file.
|
||||
# The copyright notice above this notice does not apply the code
|
||||
# above this notice or below the "BASHUTILS CODE ENDS HERE" line
|
||||
# unless it licensed under the same license without modifications.
|
||||
# STAROPENSOURCE BASHUTILS SOURCE FILE
|
||||
# Copyright (c) 2024 The StarOpenSource bashutils Authors
|
||||
# Licensed under the GNU Affero General Public License v3
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
#
|
||||
# The copyright only protects the code from this line on until
|
||||
# the "BASHUTILS CODE ENDS HERE" line. This notice is provided
|
||||
# in case the bashutils script is embedded into a script file.
|
||||
# The copyright notice above this notice does not apply the code
|
||||
# above this notice or below the "BASHUTILS CODE ENDS HERE" line
|
||||
# unless it licensed under the same license without modifications.
|
||||
|
||||
|
||||
# Logging
|
||||
|
@ -77,8 +77,8 @@ function is_command_defined() { [ "$(type -t "${1}")" == "" ] && return 0 || ret
|
|||
set_undefined BASHUTILS_LOGLEVEL 3
|
||||
|
||||
|
||||
################################
|
||||
### BASHUTILS CODE ENDS HERE ###
|
||||
################################
|
||||
################################
|
||||
### BASHUTILS CODE ENDS HERE ###
|
||||
################################
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue