Skip to content

Commit

Permalink
apply suggestion from coderabbit
Browse files Browse the repository at this point in the history
  • Loading branch information
FriederikeHanssen committed Oct 31, 2024
1 parent 2d01fa0 commit 938654d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/bwa-mem2/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ case ${ARCH} in
aarch64) LIBS="${LDFLAGS}" make CC="${CC}" CXX="${CXX}" arch=armv8.1-a ;;
esac

mkdir -p $PREFIX/bin
cp bwa-mem2* $PREFIX/bin
mkdir -p "$PREFIX/bin" || exit 1
cp bwa-mem2* "$PREFIX/bin" || exit 1


0 comments on commit 938654d

Please sign in to comment.