Skip to content

Commit f828312

Browse files
committed
Disable binary check to test mount
1 parent c769186 commit f828312

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

backend/config.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,9 +388,9 @@ func (c *ConfigRoot) CheckPaths() error {
388388
if _, err := os.Stat(c.Paths.FoldDisco); err != nil {
389389
return errors.New("FoldDisco binary was not found at " + c.Paths.FoldDisco)
390390
}
391-
if _, err := os.Stat(c.Paths.FoldseekInterface); err != nil {
392-
return errors.New("FoldseekInterface binary was not found at " + c.Paths.FoldseekInterface)
393-
}
391+
// if _, err := os.Stat(c.Paths.FoldseekInterface); err != nil {
392+
// return errors.New("FoldseekInterface binary was not found at " + c.Paths.FoldseekInterface)
393+
// }
394394
} else if _, err := os.Stat(c.Paths.Mmseqs); err != nil {
395395
return errors.New("MMseqs2 binary was not found at " + c.Paths.Mmseqs)
396396
}

0 commit comments

Comments
 (0)