We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eecef22 commit 82413ebCopy full SHA for 82413eb
bolt-dev/bolt/dev/contribute/cli.py
@@ -81,7 +81,7 @@ def cli(package, repo):
81
return
82
83
click.secho(f"Linking {package} to {repo}", bold=True)
84
- if package.startswith("bolt-"):
+ if package == "bolt" or package.startswith("bolt-"):
85
result = subprocess.run(
86
[
87
"poetry",
@@ -95,7 +95,7 @@ def cli(package, repo):
95
if result.returncode:
96
click.secho("Failed to link the package", fg="red")
97
sys.exit(result.returncode)
98
- elif package == "bolt" or package.startswith("boltx-"):
+ elif package.startswith("boltx-"):
99
100
101
0 commit comments