We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6c8b2f commit 56b2664Copy full SHA for 56b2664
bin/cm.js
@@ -85,7 +85,7 @@ function install(arg = null) {
85
if (fs.existsSync(pkg.dir)) {
86
console.warn(`Skipping cloning of ${pkg.name} (directory exists)`)
87
} else {
88
- let origin = base + pkg.name + ".git"
+ let origin = base + (pkg.name == "codemirror" ? "basic-setup" : pkg.name) + ".git"
89
run("git", ["clone", origin, pkg.dir])
90
}
91
0 commit comments