define NO_WRITE_TEMP_FILES

This commit is contained in:
Ruby Martin
2025-02-26 09:17:09 -07:00
parent 0c413e75c6
commit b64f509d1b
2 changed files with 2 additions and 2 deletions

View File

@ -467,7 +467,7 @@ generate_port() {
# Generate a random port number
#-------------------------------------------------------------------------#
if [[ "$OSTYPE" == "linux"* || "$OSTYPE" == "msys"
if [[ "$OSTYPE" == "linux"* || "$OSTYPE" == "msys"
|| "$OSTYPE" == "cygwin" ]]; then
port=$(($(od -An -N2 /dev/urandom) % (65535-49512) + 49512))
elif [[ "$OSTYPE" == "darwin"* ]]; then