remove openssl conf from shellscript

This commit is contained in:
Felix Pankratz 2023-06-29 15:27:22 +02:00
parent ba1f7b2a02
commit 9d09d3f0c9

View File

@ -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