diff options
author | Thomas Haller <thaller@redhat.com> | 2023-05-15 14:46:41 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-05-15 14:46:49 +0200 |
commit | fe78d15501c6b3597d0806a1f139e4cc0da84507 (patch) | |
tree | a0e0db2731a0fa12697e9227fdb8398369492236 /tools/check-docs.sh | |
parent | e5eba7c789cca47a9b7871fdaf3be705de41f08f (diff) | |
download | NetworkManager-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-x | tools/check-docs.sh | 2 |
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='.' |