Skip to content

Commit

Permalink
Added check for obj folder
Browse files Browse the repository at this point in the history
  • Loading branch information
crombiecrunch authored Aug 31, 2017
1 parent 87b5688 commit 766681f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ output "$coin_name finished and can be found in $coin/src/Coind. Make sure you c
output "Like my scripts? Please Donate to BTC Donation: 1AxK9a7dgeHvf3VFuwZ2adGiQTX6S1nhrp"
else
cd src
if [[ ! -e 'obj' ]]; then
sudo mkdir obj
elif [[ ! -d 'obj' ]]; then
output "Hey the developer did his job" 1>&2
fi
cd leveldb
sudo chmod +x build_detect_platform
sudo make clean
Expand Down

0 comments on commit 766681f

Please sign in to comment.