Skip to content

Commit

Permalink
Merge pull request #1907 from DaveLak/add-license-header-comments-to-…
Browse files Browse the repository at this point in the history
…shell-scripts

Add GitPython's Standard License Header Comments to Shell Scripts
  • Loading branch information
Byron committed Apr 23, 2024
2 parents 0552b83 + b021a76 commit fa2b2d6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build-release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash
#
# This file is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
#
# This script builds a release. If run in a venv, it auto-installs its tools.
# You may want to run "make release" instead of running this script directly.

Expand Down
3 changes: 3 additions & 0 deletions check-version.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash
#
# This file is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/
#
# This script checks if we are in a consistent state to build a new release.
# See the release instructions in README.md for the steps to make this pass.
# You may want to run "make release" instead of running this script directly.
Expand Down
1 change: 1 addition & 0 deletions fuzzing/LICENSE-BSD
3 changes: 3 additions & 0 deletions fuzzing/oss-fuzz-scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# shellcheck shell=bash
#
# This file is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/

set -euo pipefail

Expand Down
4 changes: 4 additions & 0 deletions fuzzing/oss-fuzz-scripts/container-environment-bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/usr/bin/env bash
#
# This file is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/

set -euo pipefail

#################
Expand Down
3 changes: 3 additions & 0 deletions init-tests-after-clone.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/sh
#
# This file is part of GitPython and is released under the
# 3-Clause BSD License: https://opensource.org/license/bsd-3-clause/

set -eu

Expand Down

0 comments on commit fa2b2d6

Please sign in to comment.