Skip to content

Commit

Permalink
Remove hardcoded list
Browse files Browse the repository at this point in the history
  • Loading branch information
stijndcl committed Feb 6, 2024
1 parent 8c854b0 commit a378d2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
8 changes: 2 additions & 6 deletions scripts/build_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,9 @@ checkdep() {
}
}

checkdep cargo "Rust Toolchain"
checkdep cargo "Rust toolchain"

# Build binaries and copy them to the /helper_scripts folder
cd $CURRENT_LOCATION/helper_scripts/unipept-database-rs
cargo build --release

for BINARY in "functional-analysis" "lcas" "taxa-by-chunk" "taxons-lineages" "taxons-uniprots-tables" "write-to-chunk" "xml-parser"
do
cp "./target/release/$BINARY" ..
done
find ./target/release -maxdepth 1 -type f -executable -exec cp {} .. \;
1 change: 1 addition & 0 deletions scripts/helper_scripts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Ignore the compiled binaries that get moved here
dat-parser
functional-analysis
lcas
taxa-by-chunk
Expand Down

0 comments on commit a378d2c

Please sign in to comment.