Commit 62952a1f authored by Yuki Takeya's avatar Yuki Takeya

Fix Build

parent 10527026
...@@ -1636,7 +1636,7 @@ get_term() { ...@@ -1636,7 +1636,7 @@ get_term() {
# Check $PPID for terminal emulator. # Check $PPID for terminal emulator.
while [[ -z "$term" ]]; do while [[ -z "$term" ]]; do
parent="$(get_ppid "$parent")" parent="$(get_ppid "$parent")"
if [ $parent -lt 2 ]; then       if [ "$parent" -lt 2 ]; then
parent=1 parent=1
term="kernel shell on $(tty)" term="kernel shell on $(tty)"
fi fi
...@@ -4322,4 +4322,4 @@ main() { ...@@ -4322,4 +4322,4 @@ main() {
return 0 return 0
} }
main "$@" main "$@"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment