Skip to content

Commit b021a76

Browse files
committed
Add GitPython's standard license header comments to top level scripts
While discussing adding similar license comments to the shell scripts introduced in PR gitpython-developers#1901, it was noticed that the shell scripts in the repository root directory did not have such comments and suggested that we could add them when the scripts in the `fuzzing/` directory were updated, so this commit does just that. See: gitpython-developers#1901 (comment)
1 parent 2b0a969 commit b021a76

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

Diff for: build-release.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22
#
3+
# This file is part of GitPython and is released under the
4+
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
5+
#
36
# This script builds a release. If run in a venv, it auto-installs its tools.
47
# You may want to run "make release" instead of running this script directly.
58

Diff for: check-version.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22
#
3+
# This file is part of GitPython and is released under the
4+
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
5+
#
36
# This script checks if we are in a consistent state to build a new release.
47
# See the release instructions in README.md for the steps to make this pass.
58
# You may want to run "make release" instead of running this script directly.

Diff for: init-tests-after-clone.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/sh
2+
#
3+
# This file is part of GitPython and is released under the
4+
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
25

36
set -eu
47

0 commit comments

Comments
 (0)