Why can’t I unzip the bootstrap (MacOS X ONLY)?

If you get an “Error 1” while trying to unpack the bootstrap-latest.zip file using the default app, download the script below and then execute it. Here’s what’s in it:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install p7zip #Installs 7zip package on the computer
cd ~/Downloads #Makes sure we are in the "Downloads" folder
mv bootstrap-latest.zip ~/Library/Application\ Support/eXperiencePoints/ #Moves the zip file to XPs default directory
cd ~/Library/Application\ Support/eXperiencePoints #Changes directory to XP default directory
rm blk0001.dat blkindex.dat peers.dat #Would need permission to overwrite
rm -Rf database #idem
7za x bootstrap-latest.zip #unzip the bootstrap
rm bootstrap-latest.zip #removes the bootstrap-latest.zip file from your folder

Download Script