From 62952a1f5683ba1d3bcf9d89699ae07615445e0b Mon Sep 17 00:00:00 2001 From: Yuki Takeya Date: Thu, 18 May 2017 12:02:13 +0900 Subject: [PATCH] Fix Build --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index b1156ef6..a5502f38 100755 --- a/neofetch +++ b/neofetch @@ -1636,7 +1636,7 @@ get_term() { # Check $PPID for terminal emulator. while [[ -z "$term" ]]; do parent="$(get_ppid "$parent")" - if [ $parent -lt 2 ]; then +       if [ "$parent" -lt 2 ]; then parent=1 term="kernel shell on $(tty)" fi @@ -4322,4 +4322,4 @@ main() { return 0 } -main "$@" +main "$@" \ No newline at end of file