diff --git a/misc/deploying-django-site-to-dvs-hosting.md b/misc/deploying-django-site-to-dvs-hosting.md index 12f0c5c..f55548c 100644 --- a/misc/deploying-django-site-to-dvs-hosting.md +++ b/misc/deploying-django-site-to-dvs-hosting.md @@ -141,7 +141,7 @@ nano ~/.bashrc ``` Находим там строку `#force_color_prompt=yes` раскомментируем её (и удаляем в ней #). И чтобы совсем отпад, находим блок: -``` +```bash if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else @@ -150,7 +150,7 @@ fi ``` И меняем на блок -``` +```bash if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[01;33m\]@\[\033[01;32m\]\h\[\033[00m\]:\[\033[00;34m\]\w\[\033[00m\]\$ ' else