phac-nml / neptune

Neptune: Genomic Signature Discovery
https://phac-nml.github.io/neptune/
Apache License 2.0
18 stars 7 forks source link

Consider use of "mkdir -p" in INSTALL.sh #1

Closed tseemann closed 7 years ago

tseemann commented 7 years ago
# Create directories if needed:
if [ ! -d "$PREFIX" ]; then
    mkdir $PREFIX
fi

if [ ! -d "$BIN" ]; then
    mkdir $BIN
fi

if [ ! -d "$LIB" ]; then
    mkdir $LIB
fi

could be standard

mkdir -p "$PREFIX"/{bin,lib}
emarinier commented 7 years ago

I've made the change as suggested to the INSTALL script.

Release: 1.2.4 Merge: 48b1ab5f06ad8dd1f92fb5aec9d136c9326bc553