Skip to content

Commit 82413eb

Browse files
committed
Fix bolt contrib for bolt subdir
1 parent eecef22 commit 82413eb

File tree

1 file changed

+2
-2
lines changed
  • bolt-dev/bolt/dev/contribute

1 file changed

+2
-2
lines changed

bolt-dev/bolt/dev/contribute/cli.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def cli(package, repo):
8181
return
8282

8383
click.secho(f"Linking {package} to {repo}", bold=True)
84-
if package.startswith("bolt-"):
84+
if package == "bolt" or package.startswith("bolt-"):
8585
result = subprocess.run(
8686
[
8787
"poetry",
@@ -95,7 +95,7 @@ def cli(package, repo):
9595
if result.returncode:
9696
click.secho("Failed to link the package", fg="red")
9797
sys.exit(result.returncode)
98-
elif package == "bolt" or package.startswith("boltx-"):
98+
elif package.startswith("boltx-"):
9999
result = subprocess.run(
100100
[
101101
"poetry",

0 commit comments

Comments
 (0)