diff --git a/bin/freenit.sh b/bin/freenit.sh index 802a46d..4617a65 100755 --- a/bin/freenit.sh +++ b/bin/freenit.sh @@ -654,9 +654,9 @@ for service in \${SERVICES}; do fi else if [ "\${REGGAE}" = "yes" ]; then - sudo tmux split-window -h -p 50 -t 0 "make -C services/\${service} BACKEND_URL=http://\${backend_hostname}:5000 devel offline=\${OFFLINE}" + sudo tmux split-window -t 0 "make -C services/\${service} BACKEND_URL=http://\${backend_hostname}:5000 devel offline=\${OFFLINE}" else - tmux split-window -h -p 50 -t 0 "env OFFLINE=\${OFFLINE} BACKEND_URL=http://\${backend_hostname}:5000 \${PROJECT_ROOT}/services/\${service}/bin/devel.sh" + tmux split-window -t 0 "env OFFLINE=\${OFFLINE} BACKEND_URL=http://\${backend_hostname}:5000 \${PROJECT_ROOT}/services/\${service}/bin/devel.sh" fi fi done