I was re-running the build.sh script working through errors and I noticed that 'rm' was complaining it could not remove the bin dir. Looking at the build.sh script, I noticed a typo which I changed as follows: rm -f $BIN_DIR --> rm -rf $BIN_DIR in my local copy.
^
I was re-running the build.sh script working through errors and I noticed that 'rm' was complaining it could not remove the bin dir. Looking at the build.sh script, I noticed a typo which I changed as follows:
rm -f $BIN_DIR-->rm -rf $BIN_DIRin my local copy.^