From fad7132df6805b8719c4de8327fbabfbdd5afc85 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 16 Jan 2017 11:46:53 +0000 Subject: make vi default text editor in main build script, instead of nano GNU Nano sucks. Vi is better. I'd tell the build system to use Vim, but that's not guaranteed to be installed. Vi is installed on more systems by default, compared to Nano, because Vi is the de facto standard text editor or unix and unix-like systems. --- libreboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libreboot') diff --git a/libreboot b/libreboot index 7bef278d..a8110e2d 100755 --- a/libreboot +++ b/libreboot @@ -232,7 +232,7 @@ libreboot_setup_variables() { if [ -z "$EDITOR" ] then - EDITOR="nano" + EDITOR="vi" fi } -- cgit v1.2.3-54-g00ecf