summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsijanec <sijanecantonluka@gmail.com>2020-06-09 18:06:11 +0200
committersijanec <sijanecantonluka@gmail.com>2020-06-09 18:06:11 +0200
commitf4c921fdfbae7845996128d0994be32760ffc977 (patch)
treebe832e5e1a01c2489c0030293d5e8b1644212b5d
parentwdyt about Makefiles? (diff)
downloadbeziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar.gz
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar.bz2
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar.lz
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar.xz
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.tar.zst
beziapp-f4c921fdfbae7845996128d0994be32760ffc977.zip
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 141eca1..63d9cc0 100644
--- a/Makefile
+++ b/Makefile
@@ -7,15 +7,15 @@ default:
prepare:
#!/bin/bash
- sudo apt install git
- mkdir tmp
+ sudo apt install git -y
+ mkdir -p tmp
cd tmp
rm -rf bverbose
git clone https://github.com/sijanec/bverbose
cd bverbose
make prepare
make install
- mv bin ../../bin
+ mv bin/* ../../bin/
cd ..
rm -rf bverbose
cd ..