Since screen commands are bash specifics make sure we launch screen with
bash login shell instead of other shells.
Fixes bug928883.
Change-Id: I62b4c7182682deb4ef16ed0cf1a3b5a130c1c4ee
| ... | ... |
@@ -1299,7 +1299,7 @@ function screen_it {
|
| 1299 | 1299 |
} |
| 1300 | 1300 |
|
| 1301 | 1301 |
# create a new named screen to run processes in |
| 1302 |
-screen -d -m -S stack -t stack |
|
| 1302 |
+screen -d -m -S stack -t stack -s /bin/bash |
|
| 1303 | 1303 |
sleep 1 |
| 1304 | 1304 |
# set a reasonable statusbar |
| 1305 | 1305 |
screen -r stack -X hardstatus alwayslastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%< %= %H"
|