Improve some installer messages
This commit is contained in:
parent
b003f56c62
commit
025c377e54
1 changed files with 10 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
||||||
install_prelude () {
|
install_prelude () {
|
||||||
printf " Cloning the Prelude's GitHub repository...\n$RESET"
|
printf " Cloning Emacs Prelude's GitHub repository...\n$RESET"
|
||||||
if [ x$PRELUDE_VERBOSE != x ]
|
if [ x$PRELUDE_VERBOSE != x ]
|
||||||
then
|
then
|
||||||
/usr/bin/env git clone $PRELUDE_URL "$PRELUDE_INSTALL_DIR"
|
/usr/bin/env git clone $PRELUDE_URL "$PRELUDE_INSTALL_DIR"
|
||||||
|
@ -14,7 +14,7 @@ install_prelude () {
|
||||||
}
|
}
|
||||||
|
|
||||||
make_prelude_dirs () {
|
make_prelude_dirs () {
|
||||||
printf " Making the required directories.\n$RESET"
|
printf " Creating the required directories.\n$RESET"
|
||||||
mkdir -p "$PRELUDE_INSTALL_DIR/savefile"
|
mkdir -p "$PRELUDE_INSTALL_DIR/savefile"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,15 +70,15 @@ colors_ () {
|
||||||
usage() {
|
usage() {
|
||||||
printf "Usage: $0 [OPTION]\n"
|
printf "Usage: $0 [OPTION]\n"
|
||||||
printf " -c, --colors \t \t \t Enable colors.\n"
|
printf " -c, --colors \t \t \t Enable colors.\n"
|
||||||
printf " -d, --directory [dir] \t Install prelude into the specified directory.\n"
|
printf " -d, --directory [dir] \t Install Prelude into the specified directory.\n"
|
||||||
printf " \t \t \t \t If 'dir' is a relative path prefix with $HOME.\n"
|
printf " \t \t \t \t If 'dir' is a relative path prefix with $HOME.\n"
|
||||||
printf " \t \t \t \t Defaults to $HOME/.emacs.d\n"
|
printf " \t \t \t \t Defaults to $HOME/.emacs.d\n"
|
||||||
printf " -s, --source [url] \t \t Clone prelude from 'url'.\n"
|
printf " -s, --source [url] \t \t Clone prelude from 'url'.\n"
|
||||||
printf " \t \t \t \t Defaults to 'https://github.com/bbatsov/prelude.git'.\n"
|
printf " \t \t \t \t Defaults to 'https://github.com/bbatsov/prelude.git'.\n"
|
||||||
printf " -n, --no-bytecompile \t \t Skip the bytecompilation step of prelude.\n"
|
printf " -n, --no-bytecompile \t \t Skip the bytecompilation step of Prelude.\n"
|
||||||
printf " -i, --into \t \t \t Install Prelude into a subdirectory in the existing configuration\n"
|
printf " -i, --into \t \t \t Install Prelude into a subdirectory in the existing configuration\n"
|
||||||
printf " \t \t \t \t The default behavious is to install prelude into the existing\n"
|
printf " \t \t \t \t The default behavior is to install Prelude into the existing\n"
|
||||||
printf " \t \t \t \t emacs configuration.\n"
|
printf " \t \t \t \t Emacs configuration (.emacs.d).\n"
|
||||||
printf " -h, --help \t \t \t Display this help and exit\n"
|
printf " -h, --help \t \t \t Display this help and exit\n"
|
||||||
printf " -v, --verbose \t \t Display verbose information\n"
|
printf " -v, --verbose \t \t Display verbose information\n"
|
||||||
printf "\n"
|
printf "\n"
|
||||||
|
@ -151,7 +151,7 @@ if [ -f "$PRELUDE_INSTALL_DIR/core/prelude-core.el" ]
|
||||||
then
|
then
|
||||||
printf "\n\n$BRED"
|
printf "\n\n$BRED"
|
||||||
printf "You already have Prelude installed.$RESET\nYou'll need to remove $PRELUDE_INSTALL_DIR/prelude if you want to install Prelude again.\n"
|
printf "You already have Prelude installed.$RESET\nYou'll need to remove $PRELUDE_INSTALL_DIR/prelude if you want to install Prelude again.\n"
|
||||||
printf "If you want to update your copy of prelude, run 'git pull origin master' from your prelude directory\n\n"
|
printf "If you want to update your copy of Prelude, run 'git pull origin master' from your Prelude directory\n\n"
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ if [ -z "$PRELUDE_SKIP_BC" ];
|
||||||
then
|
then
|
||||||
if which emacs > /dev/null 2>&1
|
if which emacs > /dev/null 2>&1
|
||||||
then
|
then
|
||||||
printf " Bytecompiling Prelude.\n"
|
printf " Byte-compiling Prelude...\n"
|
||||||
if [ x$PRELUDE_VERBOSE != x ]
|
if [ x$PRELUDE_VERBOSE != x ]
|
||||||
then
|
then
|
||||||
emacs -batch -f batch-byte-compile "$PRELUDE_INSTALL_DIR/core"/*.el
|
emacs -batch -f batch-byte-compile "$PRELUDE_INSTALL_DIR/core"/*.el
|
||||||
|
@ -230,10 +230,10 @@ then
|
||||||
emacs -batch -f batch-byte-compile "$PRELUDE_INSTALL_DIR/core"/*.el > /dev/null 2>&1
|
emacs -batch -f batch-byte-compile "$PRELUDE_INSTALL_DIR/core"/*.el > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
printf "$YELLOW Emacs not found.$RESET Skipping bytecompilation.\n"
|
printf "$YELLOW Emacs not found.$RESET Skipping byte-compilation.\n"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
printf "Skipping bytecompilation.\n"
|
printf "Skipping byte-compilation.\n"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
printf "\n"
|
printf "\n"
|
||||||
|
|
Loading…
Reference in a new issue