Skip to content

Commit 7ab1ba8

Browse files
committed
fix: Fix pixi tasks for update-from-template and rename-project
- Changed update-from-template-repo task to use explicit bash invocation - Added rename-project task with proper bash invocation - Removed ./ prefix from script paths (pixi runs from project root) - Used { cmd = "..." } format for consistency with other complex tasks This fixes issues where running via pixi tasks didn't work properly compared to running the scripts directly.
1 parent 89d4168 commit 7ab1ba8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ ci = { depends-on = [
9797
ci-push = { depends-on = ["format", "ruff-lint", "update-lock", "ci", "push"] }
9898
clear-pixi = "rm -rf .pixi pixi.lock"
9999
setup-git-merge-driver = "git config merge.ourslock.driver true"
100-
update-from-template-repo = "./scripts/update_from_template.sh"
100+
update-from-template-repo = { cmd = "bash scripts/update_from_template.sh" }
101+
rename-project = { cmd = "bash scripts/rename_project.sh" }
101102

102103
[tool.pylint]
103104
extension-pkg-whitelist = ["numpy"]

0 commit comments

Comments
 (0)