summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Karlsson2020-12-27 17:01:52 +0100
committerRasmus Karlsson2020-12-27 17:01:52 +0100
commit76ed2f38177e3ef0dc8c77aaa52fac207b95a104 (patch)
tree9130f377f0ad35d26ebd8734f09f139fd1f1cd3b
parent05f02abe899111e065892aec38d15ca3ae52b43d (diff)
downloadaur-76ed2f38177e3ef0dc8c77aaa52fac207b95a104.tar.gz
Switch to mkdir -p when making the build folder
In case the build is using the previous build environment, this is necessary to not error out if the build folder already exists. Thanks EinBaum
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 506745e1ea96..69e5fdfa3a32 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -61,7 +61,7 @@ prepare () {
build() {
cd "$srcdir/chatterino2"
- mkdir build
+ mkdir -p build
cd build
qmake ..
if [ -z "$CCACHE_SLOPPINESS" ]; then