Skip to content

Commit 56b2664

Browse files
committed
Fix closing of basic-setup package
1 parent a6c8b2f commit 56b2664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/cm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function install(arg = null) {
8585
if (fs.existsSync(pkg.dir)) {
8686
console.warn(`Skipping cloning of ${pkg.name} (directory exists)`)
8787
} else {
88-
let origin = base + pkg.name + ".git"
88+
let origin = base + (pkg.name == "codemirror" ? "basic-setup" : pkg.name) + ".git"
8989
run("git", ["clone", origin, pkg.dir])
9090
}
9191
}

0 commit comments

Comments
 (0)