Skip to content

Commit

Permalink
add build.bash
Browse files Browse the repository at this point in the history
---
Signed-off-by: Michael Ferguson <[email protected]>
  • Loading branch information
mppf committed Dec 17, 2024
1 parent d88646b commit 2195191
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/ssort_chpl/build.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

# ask bash to please exit if any command fails
# (as indicated by a nonzero exit code)
set -e

# ask bash to print commands being run
set -o xtrace

chpl --fast SuffixSimilarity.chpl
chpl --fast SuffixSort.chpl
chpl --fast FindUnique.chpl
chpl --fast ExtractUniqueKmers.chpl

0 comments on commit 2195191

Please sign in to comment.