immeëmosol

Results 16 comments of immeëmosol

afaik exec replaces the current process with the command that is passed to it. So the shell would be replaced by a new shell, which could remove all that was...

A quick search on what/where `SHELL` is set didn't give me much info. According to https://unix.stackexchange.com/questions/277944/what-sets-the-shell-environment-variable `SHELL` is set on login. So when I happen to be using another shell...

Another issue is that the `~/.profile` could not be "sourced" by the shell when it is not invoked as a login-shell.

WARNING!: untested code ahead! Evaluating the line that is added by the install script would probably give direct access to nvm ( `eval 'export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf...

Ah.. yes. I forgot to add the `/nvm.sh` part.. `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash && test -s "${XDG_CONFIG_HOME-}/${XDG_CONFIG_HOME:-${HOME}/.}nvm/nvm.sh")" && \. "${_}" ` Or even: `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash &&...

Oh, i see it also an option to set NVM_DIR to something else.., so the command would need to be even longer. `curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash && \. "${NVM_DIR:-${XDG_CONFIG_HOME-}/${XDG_CONFIG_HOME:-${HOME}/.}nvm}/nvm.sh")"...

Is this about LowerAccessLevelInspection / "[EA] Since the class is final, the member can be declared private." / "PHP Inspections > Architecture > Declaration access can be weaker" ? I...

As far as I can tell from git's manual ( https://www.git-scm.com/docs/gitattributes#_defining_a_custom_merge_driver ), you'd need to have several files & could then do a step debug in php-cli. ```sh ( #...

And also: windows Installer .msi files, and support for other package managers than just apt, like pacman installs, emerge, yum, dnf, zypper, maybe also distribute .deb files for dpkg and...

I am guessing this issue is open because > It should be possible to run `phive config --global set toolsDirectory foo` or something similar. Where 'something similar' probably isn't meant...