Adapt per review

This commit is contained in:
Reinier Criel 2025-10-27 09:23:47 -07:00
parent 9dacf5cff3
commit 190607de92
27 changed files with 191 additions and 114 deletions

View file

@ -46,8 +46,7 @@ function createUnixShims(shimsDir) {
const template = fs.readFileSync(templatePath, "utf-8");
// Create a shim for each tool except pip for now.
// TODO(pip): Enable pip and pip3 CI support
// Create a shim for each tool except pip (CI support not yet implemented)
let created = 0;
for (const toolInfo of knownAikidoTools) {
if (toolInfo.tool === "pip") {
@ -89,8 +88,7 @@ function createWindowsShims(shimsDir) {
const template = fs.readFileSync(templatePath, "utf-8");
// Create a shim for each tool except pip for now.
// TODO(pip): Enable pip and pip3 CI support
// Create a shim for each tool except pip (CI support not yet implemented)
let created = 0;
for (const toolInfo of knownAikidoTools) {
if (toolInfo.tool === "pip") {