Script on Conduit seems to crash system

Custom applications are installed to /var/config/app. If a script (e.g. Python, Bash, etc.)  has Windows line endings (\r\n aka  aka CRLF) instead of Linux line endings (\n aka  aka LF), then the script may cause a crash.

Make sure the script uses Linux line endings (\n aka  aka LF).

One way to change line endings is the following:
https://stackoverflow.com/questions/16768776/convert-line-endings

Other simpler ways include opening the script with an editor like Notepad++ (Windows) or BBEdit (Mac) and changing the file's line ending to Linux (LF) and save the file.