Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme instructions are incorrect #15

Closed
jantari opened this issue Apr 20, 2020 · 2 comments · Fixed by #19
Closed

readme instructions are incorrect #15

jantari opened this issue Apr 20, 2020 · 2 comments · Fixed by #19

Comments

@jantari
Copy link

jantari commented Apr 20, 2020

In the README.MD,

the following command is suggested:

test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors)

but it won't work ( tested on Debian 10, bash 5.0-4 ).
image

The quotes need to be ommited and the command should be:

test -r ~/.dir_colors && eval $(dircolors ~/.dir_colors)

The problem is explained here: https://serverfault.com/a/417255

@arcticicestudio
Copy link
Contributor

arcticicestudio commented Apr 27, 2020

Hi @jantari 👋, thanks for your contribution 👍

Well recognized, variable/parameter expansion are always are always a great pitfall (even though the screenshot of the command in the README is correct) 😄
Would you like to submit a PR o fix this in this repository as well as for the port project documentations?

@ghost
Copy link

ghost commented Nov 10, 2020

#19 is open to address this.

@arcticicestudio arcticicestudio removed the Hacktoberfest This repository participates in the Hacktoberfest label Nov 13, 2020
arcticicestudio pushed a commit that referenced this issue Nov 29, 2020
Removed the quotes from around `~/.dir_colors` in the installation
instructions. Before the shell specific tilde character was not resolved
via variable expansion but used as literal character instead. 

Co-authored-by: Arctic Ice Studio <development@arcticicestudio.com>
Co-authored-by: Sven Greb <development@svengreb.de>

Fixes GH-15
Fixes GH-18
Related to GH-11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants