From 90548d3f0fecb19f646c9f5dd9bd191c1bd4e395 Mon Sep 17 00:00:00 2001 From: Joe Groocock Date: Mon, 11 Jun 2018 17:35:30 +0100 Subject: [PATCH] Fix correct PAGER and EDITOR variable paths Busybox defines `vi` and `less` to be in `usr/bin` --- skel/etc/profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skel/etc/profile b/skel/etc/profile index d1c9d65..6e8b773 100644 --- a/skel/etc/profile +++ b/skel/etc/profile @@ -1,5 +1,5 @@ -export PAGER='/bin/less -R' -export EDITOR='/bin/vi' +export PAGER='/usr/bin/less -R' +export EDITOR='/usr/bin/vi' export PS1='\e[1;36m\u@\h\e[0m \e[0;32m$(ppwd)\e[0m> ' # Source configuration files from /etc/profile.d