From 389ab46dc3eabd9e6f2a8f287f4ec01b3456ead2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20Loli=C3=A9e?= Date: Fri, 20 Mar 2020 19:47:41 +0100 Subject: [PATCH] Improve eval expression in README.md (#204) The $(command) expression is preferred instead of backticks. c.f https://google.github.io/styleguide/shellguide.html#command-substitution --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d02562d..e308d96 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ curl -fsSL https://github.com/Schniz/fnm/raw/master/.ci/install.sh | bash -s -- - Add the following line to your `.bashrc`/`.zshrc` file: ```bash - eval "`fnm env --multi`" + eval "$(fnm env --multi)" ``` If you are using [fish shell](https://fishshell.com/), add this line to your `config.fish` file: