File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- # On Windows the bash shell that comes with Git for Windows should be used.
1
+ # On Windows the "sh" shell that comes with Git for Windows should be used.
2
2
# If it is not on path, give the path to the executable in the following line.
3
3
#set windows-shell := ["C:/Program Files/Git/usr/bin/sh", "-cu"]
4
4
@@ -170,7 +170,7 @@ _git-add:
170
170
171
171
# Commit files to git
172
172
_ git-commit :
173
- git commit -m ' chore: make setup was run' -a
173
+ git commit -m ' chore: just setup was run' -a
174
174
175
175
# Show git status
176
176
_ git-status :
@@ -186,7 +186,7 @@ _clean_project:
186
186
shutil.rmtree(d, ignore_errors=True)
187
187
# remove the generated python data model
188
188
for d in pathlib.Path(" {{ pymodel}} " ).iterdir():
189
- if str(d) == " __init__.py" :
189
+ if d.name == " __init__.py" :
190
190
continue
191
191
print(f' removing "{d}"' )
192
192
if d.is_dir():
@@ -210,4 +210,5 @@ _ensure_docdir:
210
210
_ ensure_examples_output :
211
211
- mkdir -p examples/ output
212
212
213
+ # Include project-specific recipes
213
214
import " project.justfile"
You can’t perform that action at this time.
0 commit comments