fix: remove debug output from parse_ports_from_file()
This commit is contained in:
parent
ed1e85fb12
commit
edfafdee5b
1
quickemu
1
quickemu
|
@ -1489,7 +1489,6 @@ function parse_ports_from_file {
|
||||||
|
|
||||||
# Loop over each line in the file
|
# Loop over each line in the file
|
||||||
while IFS= read -r CONF || [ -n "${CONF}" ]; do
|
while IFS= read -r CONF || [ -n "${CONF}" ]; do
|
||||||
echo "Processing line: ${CONF}"
|
|
||||||
# parse ports
|
# parse ports
|
||||||
port_name=$(echo "${CONF}" | cut -d',' -f 1)
|
port_name=$(echo "${CONF}" | cut -d',' -f 1)
|
||||||
port_number=$(echo "${CONF}" | cut -d',' -f 2)
|
port_number=$(echo "${CONF}" | cut -d',' -f 2)
|
||||||
|
|
Loading…
Reference in New Issue