@corellium/corellium-cli 1.3.6 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="0" lines-covered="0" line-rate="NaN" branches-valid="0" branches-covered="0" branch-rate="NaN" timestamp="1720464763021" complexity="0" version="0.1">
3
+ <coverage lines-valid="0" lines-covered="0" line-rate="NaN" branches-valid="0" branches-covered="0" branch-rate="NaN" timestamp="1720469828523" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/builds/middleware/corellium-cli</source>
6
6
  </sources>
@@ -86,7 +86,7 @@
86
86
  <div class='footer quiet pad2 space-top1 center small'>
87
87
  Code coverage generated by
88
88
  <a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
89
- at 2024-07-08T18:52:43.029Z
89
+ at 2024-07-08T20:17:08.530Z
90
90
  </div>
91
91
  <script src="prettify.js"></script>
92
92
  <script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corellium/corellium-cli",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "Corellium CLI Tool",
5
5
  "scripts": {
6
6
  "corellium": "node index.js",
@@ -38,7 +38,7 @@ async function handler (argv) {
38
38
  const client = new Client(argv)
39
39
  try {
40
40
  await client._fetch('POST', `${MAST_API_BASE_PATH}/${instance}/assessments/${assessment}/start`)
41
- log.info('Monitoring started.')
41
+ log.info('Monitoring starting.')
42
42
  } catch (error) {
43
43
  handleError(error, 'start-monitor failed', verbose)
44
44
  }
@@ -38,7 +38,7 @@ async function handler (argv) {
38
38
  const client = new Client(argv)
39
39
  try {
40
40
  await client._fetch('POST', `${MAST_API_BASE_PATH}/${instance}/assessments/${assessment}/stop`)
41
- log.info('Monitoring stopped.')
41
+ log.info('Monitoring stopping.')
42
42
  } catch (error) {
43
43
  handleError(error, 'stop-monitor failed', verbose)
44
44
  }