Skip to content

Commit 1ff7ec3

Browse files
committed
POSIX sh for equals
1 parent d095ef6 commit 1ff7ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dependencies_check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ for pkgfull in ${pkgpy}; do
6767
if [ ! $(grep -rhE "^${pkg}==" ./requirements*.txt) ]; then
6868
# echo "DEBUG: ${pkg} from setup.py not in local requirements"
6969
# shellcheck disable=SC3014
70-
if [ "${pkg}" == "${pkgfull}" ]; then
70+
if [ "${pkg}" = "${pkgfull}" ]; then
7171
echo "WARNING: ${pkg} not in any requirements and no version specified in setup.py"
7272
# else
7373
# echo "DEBUG: ${pkg} version specified in setup.py"

0 commit comments

Comments
 (0)