@lvnt/release-radar 1.1.5 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,7 +165,14 @@ ReleaseRadar includes an optional auto-updater that receives GitHub webhooks and
|
|
|
165
165
|
pm2 save
|
|
166
166
|
```
|
|
167
167
|
|
|
168
|
-
When you publish a new release, the updater will automatically run `npm update -g @lvnt/release-radar` and restart the main service.
|
|
168
|
+
When you publish a new release, the updater will automatically run `sudo npm update -g @lvnt/release-radar` and restart the main service.
|
|
169
|
+
|
|
170
|
+
**Note:** If you installed npm with sudo, configure passwordless sudo for npm:
|
|
171
|
+
```bash
|
|
172
|
+
sudo visudo
|
|
173
|
+
# Add this line:
|
|
174
|
+
# yourusername ALL=(ALL) NOPASSWD: /usr/bin/npm
|
|
175
|
+
```
|
|
169
176
|
|
|
170
177
|
## Project Structure
|
|
171
178
|
|