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

Calling NPM without the user's shell profile. #2123

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Greeley
Copy link

@Greeley Greeley commented Feb 20, 2024

According to the NPM man page, npm gets its configuration information from 5 separate sources. When npm is launched on a *nix system without the user shell npm skips any configuration in the user's $HOME as well as ignores environment variables that might be set in the user's profile or environment.

This resolves #1889 and @ZuhayrMerchant110's issue as well as mine where the project directory prefixing the appium path.

Change list

Invoke NPM on Mac and Linux systems with Shell (/bin/sh) to have access to user profile configurations.

Types of changes

What types of changes are you proposing/introducing to Java client?
Put an x in the boxes that apply

  • No changes in production code.
  • Bugfix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Details

Please provide more details about changes if it is necessary. If there are new features you can provide code samples which show the way they
work and possible use cases. Also you can create gists with pasted java code samples or put them here using markdown.
About markdown please read Mastering markdown and Writing on GitHub

According to the NPM man page, npm gets its configuration information from 5 separate sources. When npm is launched on a *nix system without the user shell npm skips any configuration in the user's $HOME as well as ignores environment variables that might be set in the user's profile or environment.

This resolves appium#1889 and @ZuhayrMerchant110's issue as well as mine where the project directory prefixing the appium path.
Copy link

linux-foundation-easycla bot commented Feb 20, 2024

CLA Not Signed

  • ❌ login: @prft-auto / The commit (f0ed86a). This user is authorized, but they must confirm their affiliation with their company. Start the authorization process by clicking here, click "Corporate", select the appropriate company from the list, then confirm your affiliation on the page that appears. For further assistance with EasyCLA, please submit a support request ticket.

@@ -147,7 +147,8 @@ private static File findMainScript() {
List<String> cmdLine = System.getProperty("os.name").toLowerCase().contains("win")
// npm is a batch script, so on windows we need to use cmd.exe in order to execute it
? Arrays.asList("cmd.exe", "/c", String.format("\"%s\" root -g", npm.getAbsolutePath()))
: Arrays.asList(npm.getAbsolutePath(), "root", "-g");
//ProcessBuilder doesn't execute a shell, some npm functionality requires the user's shell profile
: Arrays.asList("/bin/sh", "--login", "-c", npm.getAbsolutePath() + " root -g");
Copy link
Contributor

@mykola-mokhnach mykola-mokhnach Feb 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this would probably fail if the path to npm contains spaces.
We must properly escape it

@mykola-mokhnach
Copy link
Contributor

@Greeley Could you please accept the CLA and update the PR title according to https://www.conventionalcommits.org/en/v1.0.0/ requirements?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bug: The main Appium script does not exist at '/usr/local/lib/node_modules/appium/build/lib/main.js'
2 participants