Skip to content
Snippets Groups Projects
Commit e16ebc30 authored by Stan Hu's avatar Stan Hu
Browse files

Merge branch 'picture_fix' into 'master'

Fix GitLab logo display for certain shells

Backslash escapes are disabled in `echo` by default in most linux distributions I've seen. Man page for current Fedora echo:
```
       -e     enable interpretation of backslash escapes

       -E     disable interpretation of backslash escapes (default)
``` 

This MR explicitly enables escapes. Screenshots before and after :smiley: :

![gl_picture_before](/uploads/17abeaa4671da38ee7e172a5a7477678/gl_picture_before.png)
![gl_picture_after](/uploads/7aa229f1913a8340395196fea099ff78/gl_picture_after.png)



See merge request !152
parents c9163294 cbb47c87
No related branches found
No related tags found
1 merge request!152Fix GitLab logo display for certain shells
Loading
Loading
@@ -10,7 +10,7 @@ fi
port=${port:-3000}
 
print_port() {
echo "
echo -e "
 
\033[38;5;88m\` \`
:s: :s:
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment