- Nov 01, 2023
-
-
Jordan Harband authored
avoids `expr: warning: ^lts/-[1-9][0-9]*: using ^ as the first character of a basic regular expression is not portable; it is ignored`
-
- Oct 23, 2023
-
-
Jordan Harband authored
-
- Oct 25, 2023
-
-
Jordan Harband authored
-
- Oct 23, 2023
-
-
Jordan Harband authored
-
Jordan Harband authored
-
Jordan Harband authored
-
Justin Dhillon authored
-
- Oct 20, 2023
- Oct 06, 2023
-
-
Michael Di Prisco authored
-
- Oct 09, 2023
-
-
Jordan Harband authored
-
zhangdiandian authored
Signed-off-by:
zhangdiandian <1635468471@qq.com>
-
- Sep 19, 2023
-
-
Peter Dave Hello authored
-
- Sep 18, 2023
-
-
Nam authored
-
- Aug 26, 2023
-
-
Jordan Harband authored
-
- Aug 22, 2023
-
-
Jordan Harband authored
-
- Jun 21, 2023
-
-
Oliver Henshaw authored
Path lists in environmental variables often give special meaning to empty entries (e.g. in PATH or MANPATH). These are represented by leading or trailing colons, or by doubled colons in the middle of the list. Adjust the awk invocation to correctly deal with trailing colons by printing the separator before every field except the first, and then printing the final separator that is read from the input - this will either be a colon or the null string. This preserves leading and trailing colons in all cases while not adding extra colons in the wrong place. Add test to confirm the correct behaviour. Fixes #3144
-
- Jul 20, 2023
-
-
heungjun.park authored
Co-authored-by:
heungjun.park <rockheung@gmail.com> Co-authored-by:
Jordan Harband <ljharb@gmail.com>
-
- Aug 06, 2023
- Dec 28, 2022
-
-
Jordan Harband authored
-
Jordan Harband authored
-
- Jul 26, 2023
-
-
Jordan Harband authored
See https://github.com/npm/cli/pull/6674
-
- Jul 25, 2023
-
-
Jordan Harband authored
-
Jordan Harband authored
-
- Apr 15, 2020
-
-
Emmanuel Ogbizi authored
-
- Jun 18, 2023
-
-
emmanuel-ferdman authored
Signed-off-by:
emmanuel-ferdman <35470921+emmanuel-ferdman@users.noreply.github.com>
-
- Jun 05, 2023
-
-
Augustin Mauroy authored
-
- Apr 25, 2023
-
-
milesfrain authored
I had to dig into #2410 to learn about the `PROFILE=/dev/null` technique to install without appending to my shell config. Figured this note would be good to add in the main installation docs. Also added a note on how to do this as a one-liner which was not obvious for me.
-
- May 01, 2023
-
-
Deniz Eren Evrendilek authored
Fixes #3104
-
- Apr 29, 2023
-
-
Deniz authored
Fixes #3035
-
- Apr 22, 2023
-
-
Spike Grobstein authored
the `nvm.sh` file assigns and exports an `NVM_CD_FLAGS` variable if it was sourced from a zsh shell. the fact that it's exported means that it'll be assigned in all child processes, including the `nvm-exec` script, which uses bash as the interpreter. Bash's `cd` command doesn't have a `-q` flag, so if the `NVM_CD_FLAGS` is assigned `-q`, the script will error out and incorrectly claim that the node version isn't installed. this also manifests itself in the `nvm exec` command. Example: ```console $ nvm exec 16.14.0 npm --version Running node v16.14.0 (npm v8.3.1) /Users/<ME>/.nvm/nvm.sh: line 28: cd: -q: invalid option cd: usage: cd [-L|[-P [-e]] [-@]] [dir] both the tree and the node path are required N/A: version "v16.14.0 -> N/A" is not yet installed. You need to run "nvm install v16.14.0" to install it before using it. ``` To address this, we unset the `NVM_CD_FLAGS` at the start of the `nvm-exec` script, before loading `nvm.sh`.
-
- Apr 28, 2023
-
-
Jordan Harband authored
-
Jordan Harband authored
-
- Apr 09, 2023
-
-
JC (Jonathan Chen) authored
Resolves #3081
-
- Apr 08, 2023
-
-
Leo Zlotnikov authored
-
- Apr 05, 2023
-
-
Peter Dave Hello authored
-
- Apr 06, 2023
-
-
Jordan Harband authored
-
- Apr 03, 2023
-
-
Peter Dave Hello authored
travis-ci.org is deprecated and replaced by app.travis-ci.com for a while
-
- Mar 22, 2023
-
-
Jordan Harband authored
-
Dennis authored
-
- Mar 10, 2023
-
-
William Baker authored
Fixes #3054
-