Commit acbca0fd authored by Ed Reel's avatar Ed Reel Committed by GitHub

Fix compare_packages.sh: line 14: [: too many arguments (#5875)

parent 9254f3d2
......@@ -11,7 +11,7 @@ ls ../packages/*.rb | sort | cut -d'/' -f3 | cut -d'.' -f1 > /tmp/packages_all.t
rm -f /tmp/packages.txt
touch /tmp/packages.txt
for p in $(cat /tmp/packages_all.txt); do
if [ ! $(grep 'is_fake' ../packages/${p}.rb 2> /dev/null) ]; then
if [[ ! $(grep 'is_fake' ../packages/${p}.rb 2> /dev/null) ]]; then
echo $p >> /tmp/packages.txt
fi
done
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment