Browse Source
fix(start): correct order of tmux size arguments
fix(start): correct order of tmux size arguments
pull/2114/head
Daniel Gibbs
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
lgsm/functions/command_start.sh
|
@ -90,7 +90,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}" |
|
|