Skip to content

Commit

Permalink
fix check changes
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Jun 20, 2024
1 parent aec456c commit bdd0a47
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ProjectConfigurationManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,19 @@ REM Initialize flags
if exist "".conan\CONANDATA_%CONAN_BUILD_CONFIG%"" (
echo Checking changes in conandata.yml
fc ""conandata.yml"" "".conan\CONANDATA_%CONAN_BUILD_CONFIG%"" > nul
if %errorlevel% equ 1 set performInstall=1
if errorlevel 1 (
set performInstall=1
echo Changes detected in conandata.yml
)
)
if exist "".conan\CONANFILE_%CONAN_BUILD_CONFIG%"" (
echo Checking changes in conanfile.py
fc ""conanfile.py"" "".conan\CONANFILE_%CONAN_BUILD_CONFIG%"" > nul
if %errorlevel% equ 1 set performInstall=1
if errorlevel 1 (
set performInstall=1
echo Changes detected in conanfile.py
)
)
REM Check for the .runconan file that indicates changes in profiles
Expand Down

0 comments on commit bdd0a47

Please sign in to comment.