logmon-cli 1.0.14 → 1.0.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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -10,7 +10,7 @@ const pkg = require('./package.json');
|
|
|
10
10
|
const http = require('http');
|
|
11
11
|
|
|
12
12
|
// 전체 인자 중 'uninstall'이 포함되어 있는지 견고하게 확인
|
|
13
|
-
const isUninstall = process.argv.includes('uninstall');
|
|
13
|
+
const isUninstall = process.argv.some(arg => arg.toLowerCase().includes('uninstall'));
|
|
14
14
|
|
|
15
15
|
function checkBackendHealth(url) {
|
|
16
16
|
return new Promise((resolve) => {
|