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 3342c47 commit a5db1cdCopy full SHA for a5db1cd
src/cli/commands/link.js
@@ -53,7 +53,7 @@ export async function run(
53
54
const linkLoc = path.join(config.linkFolder, name);
55
if (await fs.exists(linkLoc)) {
56
- throw new MessageError(reporter.lang('linkCollision', name));
+ reporter.warn(reporter.lang('linkCollision', name));
57
} else {
58
await fs.mkdirp(path.dirname(linkLoc));
59
await fs.symlink(config.cwd, linkLoc);
0 commit comments