Commit 13f21bc
committed
fix: guard exec < /dev/tty with || true for set -e safety
exec < /dev/tty can fail even when the file exists (e.g. "Device not
configured"). Under set -e this kills the script. Add || true so the
script falls through gracefully.1 parent 652d37f commit 13f21bc
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| |||
0 commit comments