()
| 2 | |
| 3 | // eslint-disable-next-line require-await |
| 4 | const main = async () => { |
| 5 | const integrationInfo = readIntegrationInfo(); |
| 6 | if (integrationInfo.airnodeType !== 'local') { |
| 7 | cliPrint.error('You only need to run this script if you want to stop Airnode running locally!'); |
| 8 | return; |
| 9 | } |
| 10 | |
| 11 | runShellCommand(`docker stop airnode`); |
| 12 | }; |
| 13 | |
| 14 | runAndHandleErrors(main); |
nothing calls this directly
no test coverage detected