summaryrefslogtreecommitdiff
path: root/.private
diff options
context:
space:
mode:
authorTormod Volden <debian.tormod@gmail.com>2021-09-22 15:55:33 +0200
committerTormod Volden <debian.tormod@gmail.com>2021-09-23 10:52:11 +0200
commite88b77ff6e848df299e4d9ed4926581991b7ffdf (patch)
treead7f8d708d4c122d2b4c26ebe1e222304fc3d8aa /.private
parent35b3a52188757ddd1aaa64c7639ad1a0e86ab4b1 (diff)
downloadlibusb-e88b77ff6e848df299e4d9ed4926581991b7ffdf.tar.gz
git hooks: Remove "source" bashism
"source" is not supported in Bourne shell Closes #997 Signed-off-by: Tormod Volden <debian.tormod@gmail.com>
Diffstat (limited to '.private')
-rwxr-xr-x.private/post-rewrite.sh2
-rwxr-xr-x.private/pre-commit.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.private/post-rewrite.sh b/.private/post-rewrite.sh
index 60ec3e4..d1f9999 100755
--- a/.private/post-rewrite.sh
+++ b/.private/post-rewrite.sh
@@ -6,7 +6,7 @@
# .git/hooks/ with the following content:
# #!/bin/sh
# if [ -x .private/post-rewrite.sh ]; then
-# source .private/post-rewrite.sh
+# . .private/post-rewrite.sh
# fi
#
# NOTE: These versioning hooks are intended to be used *INTERNALLY* by the
diff --git a/.private/pre-commit.sh b/.private/pre-commit.sh
index 48328f8..1c30c0f 100755
--- a/.private/pre-commit.sh
+++ b/.private/pre-commit.sh
@@ -8,7 +8,7 @@
# .git/hooks/ with the following content:
# #!/bin/sh
# if [ -x .private/pre-commit.sh ]; then
-# source .private/pre-commit.sh
+# . .private/pre-commit.sh
# fi
#
# NOTE: These versioning hooks are intended to be used *INTERNALLY* by the