From ba4199924df1bf949a21e1ccbd57ffb67965eb9d Mon Sep 17 00:00:00 2001 From: light7734 Date: Mon, 9 Dec 2024 16:30:45 +0330 Subject: [PATCH] fix: conan command arguments --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1af943e..e8f9f2f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -77,8 +77,8 @@ steps: - export CC=$(which gcc) - export CXX=$(which g++) - - conan install . --build=missing -pr"$(pwd)/tools/conan/profiles/linux_gcc_amd64" - - conan build . -pr=$${CONAN_PROFILE} + - conan install . --build=missing -pr "$(pwd)/tools/conan/profiles/linux_gcc_amd64" + - conan build . -pr "$(pwd)/tools/conan/profiles/linux_gcc_amd64" - ./build/Release/modules/light/light @@ -97,8 +97,8 @@ steps: - export CC=$(which clang) - export CXX=$(which clang++) - - conan install . --build=missing -pr"$(pwd)/tools/conan/profiles/linux_clang_amd64" - - conan build . -pr=$${CONAN_PROFILE} + - conan install . --build=missing -pr "$(pwd)/tools/conan/profiles/linux_clang_amd64" + - conan build . -pr "$(pwd)/tools/conan/profiles/linux_clang_amd64" - ./build/Release/modules/light/light