fix: 🐛 Fix typo in entrypoint

This commit is contained in:
Radek Goláň jr. 2024-08-25 21:55:17 +02:00
parent 14178dcde1
commit b1fb4a2bda
Signed by: shield
GPG Key ID: D86423BFC31F3591

View File

@ -13,7 +13,7 @@ else
MEMLIMIT=$(grep MemTotal /proc/meminfo | awk '{print $2 * 1024}') MEMLIMIT=$(grep MemTotal /proc/meminfo | awk '{print $2 * 1024}')
fi fi
if [[ $MEMLIMIT =~ ^[0-9]+$ ]]; then if ! [[ $MEMLIMIT =~ ^[0-9]+$ ]]; then
MEMLIMIT=$MEMSIZE MEMLIMIT=$MEMSIZE
fi fi