Revert "bootstrap: Warn about Windows case-sensitivity support"

This reverts commit 5ce9ca7349.

Reason for revert: Some CQ bots are failing due to this check.

Original change's description:
> bootstrap: Warn about Windows case-sensitivity support
>
> Pigweed doesn't support case-sensitive filesystems on Windows yet, so
> emit an error if a user tries to bootstrap from one.
>
> Bug: b/322437881
> Change-Id: Iac896bd3310c597615473915746bddac11cf00c7
> Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/194715
> Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
> Pigweed-Auto-Submit: Armando Montanez <amontanez@google.com>
> Reviewed-by: Alexei Frolov <frolv@google.com>
> Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com>

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: b/322437881
Change-Id: Ic32ee2bc60edab4f1719a2bf91d6ddf0b7fed4fa
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/195252
Commit-Queue: Auto-Submit <auto-submit@pigweed-service-accounts.iam.gserviceaccount.com>
Reviewed-by: Chad Norvell <chadnorvell@google.com>
Pigweed-Auto-Submit: Armando Montanez <amontanez@google.com>
Presubmit-Verified: CQ Bot Account <pigweed-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
Armando Montanez 2024-03-07 22:00:35 +00:00 committed by CQ Bot Account
parent 8dcf8a5634
commit 601edba48e

View File

@ -96,23 +96,6 @@ if "%PW_ENVIRONMENT_ROOT%"=="" (
set "_PW_ACTUAL_ENVIRONMENT_ROOT=%PW_ENVIRONMENT_ROOT%"
)
:: Check case sensitivity.
:: TODO: https://pwbug.dev/322437881 - Support case-sensitive filesystems on
:: Windows.
fsutil.exe file queryCaseSensitiveInfo "%PW_PROJECT_ROOT%" | findstr disabled > NUL
if "%ERRORLEVEL%" == "1" (
echo.
echo Error: Your project's directory has case sensitivity enabled.
echo.
echo Pigweed does not yet support case-sensitive file systems on Windows.
echo Please run this command **FROM AN ADMINISTRATOR COMMAND PROMPT** to
echo disable case sensitivity on your checkout:
echo.
echo fsutil.exe file setCaseSensitiveInfo "%PW_PROJECT_ROOT%" disable
echo.
goto finish
)
set "shell_file=%_PW_ACTUAL_ENVIRONMENT_ROOT%\activate.bat"
set "_pw_start_script=%PW_ROOT%\pw_env_setup\py\pw_env_setup\windows_env_start.py"