Skip to content

Commit fa2b2d6

Browse files
authored
Merge pull request #1907 from DaveLak/add-license-header-comments-to-shell-scripts
Add GitPython's Standard License Header Comments to Shell Scripts
2 parents 0552b83 + b021a76 commit fa2b2d6

File tree

6 files changed

+17
-0
lines changed

6 files changed

+17
-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: fuzzing/LICENSE-BSD

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../LICENSE

Diff for: fuzzing/oss-fuzz-scripts/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# shellcheck shell=bash
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 -euo pipefail
47

Diff for: fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env bash
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/
5+
26
set -euo pipefail
37

48
#################

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)