Browse Source

Merge pull request #1751 from Grimston/patch-1

Tmux session size arguments out of order.
pull/1754/head
Daniel Gibbs 7 years ago
committed by GitHub
parent
commit
5b4eb01729
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/command_start.sh

2
lgsm/functions/command_start.sh

@ -98,7 +98,7 @@ fn_start_tmux(){
# Create lockfile # Create lockfile
date > "${rootdir}/${lockselfname}" date > "${rootdir}/${lockselfname}"
cd "${executabledir}" cd "${executabledir}"
tmux new-session -d -x "${sessionheight}" -y "${sessionwidth}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp" tmux new-session -d -x "${sessionwidth}" -y "${sessionheight}" -s "${servicename}" "${executable} ${parms}" 2> "${lgsmlogdir}/.${servicename}-tmux-error.tmp"
# Create logfile # Create logfile
touch "${consolelog}" touch "${consolelog}"

Loading…
Cancel
Save