summaryrefslogtreecommitdiff
path: root/tools/check-docs.sh
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2023-05-15 14:46:41 +0200
committerThomas Haller <thaller@redhat.com>2023-05-15 14:46:49 +0200
commitfe78d15501c6b3597d0806a1f139e4cc0da84507 (patch)
treea0e0db2731a0fa12697e9227fdb8398369492236 /tools/check-docs.sh
parente5eba7c789cca47a9b7871fdaf3be705de41f08f (diff)
downloadNetworkManager-th/build-fixes-cloud-setup.tar.gz
all: avoid "==" bashism in scriptsth/build-fixes-cloud-setup
Diffstat (limited to 'tools/check-docs.sh')
-rwxr-xr-xtools/check-docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/check-docs.sh b/tools/check-docs.sh
index 2746848c1e..b0fd3131f0 100755
--- a/tools/check-docs.sh
+++ b/tools/check-docs.sh
@@ -39,7 +39,7 @@ libnm_headers() {
SOURCEDIR="$1"
BUILDDIR="$2"
-if test "$SOURCEDIR" == "$BUILDDIR"; then
+if test "$SOURCEDIR" = "$BUILDDIR"; then
BUILDDIR=
fi
[ -z "$SOURCEDIR" ] && SOURCEDIR='.'