Skip to content
Snippets Groups Projects
Commit 04f71fab authored by Jan Busa's avatar Jan Busa
Browse files

Escaping $ in root.sh so that mpdJupyROOT is created correctly.

parent 74495241
No related branches found
Tags mpdroot-v23.12.23
No related merge requests found
......@@ -239,9 +239,9 @@ make install
cat >> "$INSTALLROOT/bin/mpdJupyROOT" <<EoF
#!/bin/bash
if [ -n "$1" ]; then
IFS=: read -r IP PORT <<< $1
root --notebook --ip=$IP --port=$PORT
if [ -n "\$1" ]; then
IFS=: read -r IP PORT <<< \$1
root --notebook --ip=\$IP --port=\$PORT
else
root --notebook
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment