From 9d09d3f0c9e3b56b459781a5e6daf04626aca133 Mon Sep 17 00:00:00 2001 From: Felix Pankratz Date: Thu, 29 Jun 2023 15:27:22 +0200 Subject: [PATCH] remove openssl conf from shellscript --- check_packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_packages.sh b/check_packages.sh index e7f6edf..70d10f9 100755 --- a/check_packages.sh +++ b/check_packages.sh @@ -1,7 +1,7 @@ #!/bin/sh #for pkg in $(cat packages.list); do while IFS= read -r pkg; do - output="$(OPENSSL_CONF=openssl.conf python3 npm-manifest-check.py "$pkg")"; + output="$(python3 npm-manifest-check.py "$pkg")"; if [ $? -ne 0 ]; then echo "$output"; fi