Skip to content

Commit

Permalink
Fix detect
Browse files Browse the repository at this point in the history
  • Loading branch information
willnode committed Sep 18, 2024
1 parent b0f512b commit e31586c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/nginx.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class NginxExecutor {
if (r[k] == unitProxy) {
r[k] = "unit";
} else if (r[k].startsWith(dockerProxy)) {
r[k] = "docker:" + r[k].slice(dockerProxy);
r[k] = "docker:" + r[k].slice(dockerProxy.length);
}
}
}
Expand Down

0 comments on commit e31586c

Please sign in to comment.