Skip to content

Commit

Permalink
fix: patch windows path isuses (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev authored May 20, 2024
1 parent 11f2797 commit eb3a7f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions copier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ _subdirectory: ./template_content

_tasks:
- "echo '==== Checking compatibility with the cli ==='"
- '{{ python_path if python_path else _copier_python }} pre_init.py'
- '"{{ python_path if python_path else _copier_python }}" pre_init.py'

- "echo '==== 1/4 - Initializing base template ===='"
- 'algokit init -t base -n . --no-git --no-ide --no-bootstrap --no-workspace
Expand Down Expand Up @@ -36,7 +36,7 @@ _tasks:
-a use_pre_commit "no"'

- "echo '==== 4/4 - Finalizing setup ===='"
- '{{ python_path if python_path else _copier_python }} post_init.py "./projects/{{ project_name }}-contracts" "./projects/{{ project_name }}-frontend"'
- '"{{ python_path if python_path else _copier_python }}" post_init.py "./projects/{{ project_name }}-contracts" "./projects/{{ project_name }}-frontend"'
# _copier_python above is used for backwards compatibility with versions < v1.11.3 of the algokit cli

# questions
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ version = "0.1.0"
description = ""
authors = ["MakerX <[email protected]>"]
readme = "README.md"
package-mode = false


[tool.poetry.dependencies]
python = "^3.12"
Expand Down

0 comments on commit eb3a7f0

Please sign in to comment.