diff options
author | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2025-02-17 19:06:26 +0100 |
---|---|---|
committer | Mohammad Akhlaghi <mohammad@akhlaghi.org> | 2025-02-17 19:06:26 +0100 |
commit | dd051d614e7db846a538dabb0e2d80afd8e75fa9 (patch) | |
tree | 65d376d2f5d11a5e4af3d5be374c271d59f9e0dd /reproduce/software | |
parent | a55a407c1f2a1b280be78f24abd1fe6d4a8032e2 (diff) |
README-hacking: updating maneage branch moved to new section
SUMMARY: this commit does not affect your project.
Until this commit, the checklist to update the Maneage branch of a project
was within a separate subsection and the descriptions where comments in a
large code block. This made it hard to find and follow in the large
README-hacking.md file. Also, I noticed that the 'tarballs-prepare.sh'
didn't have a copyright notice and that one of the demo copyright
statements in README-hacking was wrong.
With this commit, the large code block has been broken into an enumerated
list (with small code-boxes under each item) and brought into a dedicated
section, which makes it easier to find. The two other minor points have
also been addressed.
Diffstat (limited to 'reproduce/software')
-rwxr-xr-x | reproduce/software/shell/tarball-prepare.sh | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/reproduce/software/shell/tarball-prepare.sh b/reproduce/software/shell/tarball-prepare.sh index 09e1c89..5b41aec 100755 --- a/reproduce/software/shell/tarball-prepare.sh +++ b/reproduce/software/shell/tarball-prepare.sh @@ -17,7 +17,24 @@ # # Copyright (C) 2022-2025 Mohammad Akhlaghi <mohammad@akhlaghi.org> # Copyright (C) 2022-2025 Pedram Ashofteh Ardakani <pedramardakani@pm.me> -# Released under GNU GPLv3+ +# Copyright (C) 2025-2025 Giacomo Lorenzetti <glorenzetti@cefca.es> +# +# This script is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# This script 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 General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this script. If not, see <http://www.gnu.org/licenses/>. + + + + # Abort the script in case of an error. set -e |