aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-16 12:56:34 +0300
committerCem Keylan <cem@ckyln.com>2020-05-16 12:56:34 +0300
commit621ab35b57f03de851d7cacb58b2df914d978547 (patch)
tree0ec59e824c083617157cebf4f8eaec8ec79fd604
parentc140ff0ad691a34ecf9b46ea471ba6a6fc4dfd32 (diff)
downloadinit-621ab35b57f03de851d7cacb58b2df914d978547.tar.gz
rc.lib: fix error message
-rw-r--r--rc.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.lib b/rc.lib
index 8d65dd9..103f851 100644
--- a/rc.lib
+++ b/rc.lib
@@ -5,7 +5,7 @@ out() { printf '\033[1;36m-> \033[39m%s\033[m\n' "$@" ;}
err() { printf '\033[1;31m!> \033[39m%s\033[m\n' "$@" ;}
shell() {
- error "Dropping to shell, type 'exit' to continue the boot process."
+ err "Dropping to shell, type 'exit' to continue the boot process."
sh -l
}