diff --git a/.github/workflows/build-ants.yml b/.github/workflows/build-ants.yml index 5ed4ed4..f1f7a52 100644 --- a/.github/workflows/build-ants.yml +++ b/.github/workflows/build-ants.yml @@ -69,7 +69,7 @@ jobs: # snip out the apps we need for https://github.com/neuropoly/spinalcordtoolbox, since including all of ANTS is too much mkdir sct-apps/ cp antsbin/ANTS-build/Examples/{antsRegistration,antsSliceRegularizedRegistration,antsApplyTransforms,ComposeMultiTransform} sct-apps - (cd sct-apps; for i in `ls`; do mv $i isct_$i; done) + (cd sct-apps; for i in *; do mv $i isct_$i; done) cp COPYING.txt sct-apps tar -zcvf sct-apps_${{ env.ARTIFACT }}.tar.gz sct-apps/ continue-on-error: true