From e88b77ff6e848df299e4d9ed4926581991b7ffdf Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Wed, 22 Sep 2021 15:55:33 +0200 Subject: git hooks: Remove "source" bashism "source" is not supported in Bourne shell Closes #997 Signed-off-by: Tormod Volden --- .private/post-rewrite.sh | 2 +- .private/pre-commit.sh | 2 +- libusb/version_nano.h | 2 +- 3 files changed, 3 insertions(+), 3 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 diff --git a/libusb/version_nano.h b/libusb/version_nano.h index c1bd32c..0243e23 100644 --- a/libusb/version_nano.h +++ b/libusb/version_nano.h @@ -1 +1 @@ -#define LIBUSB_NANO 11655 +#define LIBUSB_NANO 11656 -- cgit v1.2.1