Skip to content

Commit

Permalink
add double file separator for java
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Nov 13, 2024
1 parent bb5836e commit f717046
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/create_macro.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ def parse_model_paths(models):
macro = MACRO_STR.format(model_path="[" + mfp + "]", input_path="[" + os.path.join(mfp, sample_name) + "]", output_folder="[" + mfp + "]")
else:
macro = MACRO_STR.format(model_path=mfp, input_path=os.path.join(mfp, sample_name), output_folder=mfp)
macro = macro.replace(os.sep, os.sep + os.sep)
file.write(macro + os.linesep)
print(macro)

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/integration_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
-json_fpath ${{ env.JSON_FPATH }}
- name: Run macros
shell: bash
run: |
fiji/Fiji.app/${{ matrix.fiji_executable }} --headless --console --debug -macro ${{ env.MACRO_FPATH }}
Expand Down

0 comments on commit f717046

Please sign in to comment.