aboutsummaryrefslogtreecommitdiff
path: root/libreboot
diff options
context:
space:
mode:
authorLeah Rowe <info@minifree.org>2017-01-16 11:46:53 +0000
committerLeah Rowe <info@minifree.org>2017-01-16 11:47:11 +0000
commitfad7132df6805b8719c4de8327fbabfbdd5afc85 (patch)
treeaa86c43a4145105d4f888049357237bebd5fc53c /libreboot
parentd821c4a4c3959afcd868c76a509c1099afc8a7c5 (diff)
downloadlibrebootfr-fad7132df6805b8719c4de8327fbabfbdd5afc85.tar.gz
librebootfr-fad7132df6805b8719c4de8327fbabfbdd5afc85.zip
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.
Diffstat (limited to 'libreboot')
-rwxr-xr-xlibreboot2
1 files changed, 1 insertions, 1 deletions
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
}