-
-
Notifications
You must be signed in to change notification settings - Fork 264
Make nodejs_generate_etc_profile an actual bool #171
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
base: master
Are you sure you want to change the base?
Changes from 3 commits
26de039
bbb2b52
bd51b98
1b44aed
1a496ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,10 +34,10 @@ | |
| environment: | ||
| NPM_CONFIG_PREFIX: "{{ npm_config_prefix }}" | ||
| NODE_PATH: "{{ npm_config_prefix }}/lib/node_modules" | ||
| NPM_CONFIG_UNSAFE_PERM: "{{ npm_config_unsafe_perm }}" | ||
| NPM_CONFIG_UNSAFE_PERM: "{{ npm_config_unsafe_perm | bool }}" | ||
|
||
| with_items: "{{ nodejs_npm_global_packages }}" | ||
|
|
||
| - name: Install packages defined in a given package.json. | ||
| npm: | ||
| path: "{{ nodejs_package_json_path }}" | ||
| when: nodejs_package_json_path is defined and nodejs_package_json_path | ||
| when: nodejs_package_json_path is defined and nodejs_package_json_path | bool | ||
|
||
Uh oh!
There was an error while loading. Please reload this page.