File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
SequenceAnalysis/src/org/labkey/sequenceanalysis Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 55jobs :
66 sync-release-branches :
77 # github.head_ref should only be set on forked repos, meaning this action should only run on the primary fork
8- if : ! github.head_ref
8+ if : github.head_ref == ''
99 runs-on : ubuntu-latest
1010 steps :
1111 - name : " Sync Release Branches"
1717 destination_branch_prefix : " discvr-"
1818 github_token : ${{ secrets.GITHUB_TOKEN }}
1919 sync-develop :
20- if : ! github.head_ref
20+ if : github.head_ref == ''
2121 runs-on : ubuntu-latest
2222 steps :
2323 - name : " Sync Develop Branch"
Original file line number Diff line number Diff line change @@ -3659,6 +3659,21 @@ else if (fastaFileType.isType(data.getFile()))
36593659 }
36603660 }
36613661 }
3662+
3663+ File dict = new File (data .getFile ().getParentFile (), FileUtil .getBaseName (data .getFile ()) + ".dict" );
3664+ if (dict .exists ())
3665+ {
3666+ files .add (dict );
3667+ }
3668+ else
3669+ {
3670+ //Try alternate name scheme
3671+ dict = new File (data .getFile () + ".dict" );
3672+ if (dict .exists ())
3673+ {
3674+ files .add (dict );
3675+ }
3676+ }
36623677 }
36633678 }
36643679
You can’t perform that action at this time.
0 commit comments