git-watchtower 1.10.14 → 1.10.15
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/bin/git-watchtower.js +1 -1
- package/package.json +1 -1
package/bin/git-watchtower.js
CHANGED
|
@@ -3282,7 +3282,7 @@ async function start() {
|
|
|
3282
3282
|
} else {
|
|
3283
3283
|
// Static mode
|
|
3284
3284
|
server = createStaticServer();
|
|
3285
|
-
server.listen(PORT, () => {
|
|
3285
|
+
server.listen(PORT, '127.0.0.1', () => {
|
|
3286
3286
|
addLog(`Server started on http://localhost:${PORT}`, 'success');
|
|
3287
3287
|
addLog(`Serving ${STATIC_DIR.replace(PROJECT_ROOT, '.')}`, 'info');
|
|
3288
3288
|
addLog(`Current branch: ${store.get('currentBranch')}`, 'info');
|
package/package.json
CHANGED