From 9a93b36902e4ef9adb2b27cd7b6eb228105a3e93 Mon Sep 17 00:00:00 2001 From: Anupam Basak <anupam.basak27@gmail.com> Date: Mon, 3 Jun 2024 19:38:36 +0530 Subject: [PATCH] mkdir -p and not mkdir -P --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2696e95..2fb7d4b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,10 +107,10 @@ build-zynthbox-image-armhf: git clone https://github.com/zynthbox/zynthbox-qml.git -b dev-rpi5 apt install libgpiod-dev git clone https://github.com/zynthbox/zyncoder.git -b dev-rpi5-libgpiod - mkdir -P zyncoder/build + mkdir -p zyncoder/build cd zyncoder/build - ZYNTHIAN_WIRING_LAYOUT="Z2_V2" cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo - make -j$(nproc) install + ZYNTHIAN_WIRING_LAYOUT="Z2_V2" cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo .. + make -j4 install EOF - sudo umount $mountdir/boot/ $mountdir/dev/pts $mountdir/dev/ $mountdir/proc/ $mountdir/sys/ - sudo umount $mountdir -- GitLab