Update check for isdocker

This commit is contained in:
Varun Sharma 2024-10-17 20:28:20 -07:00
commit 806ab1cccb
No known key found for this signature in database
GPG key ID: CE30C1F427CE6272
3 changed files with 3 additions and 3 deletions

2
dist/pre/index.js vendored
View file

@ -71748,7 +71748,7 @@ var setup_awaiter = (undefined && undefined.__awaiter) || function (thisArg, _ar
console.log(UBUNTU_MESSAGE);
return;
}
if (isDocker()) {
if (isGithubHosted() && isDocker()) {
console.log(CONTAINER_MESSAGE);
return;
}

File diff suppressed because one or more lines are too long

View file

@ -39,7 +39,7 @@ interface MonitorResponse {
console.log(common.UBUNTU_MESSAGE);
return;
}
if (isDocker()) {
if (isGithubHosted() && isDocker()) {
console.log(common.CONTAINER_MESSAGE);
return;
}