From ef6c4daf07e2a69305968ac2ce5b661a19aace07 Mon Sep 17 00:00:00 2001 From: Meow King Date: Wed, 31 Jul 2024 14:46:25 +0800 Subject: [PATCH] test(ci): windows --- scripts/action/install_llvm.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/action/install_llvm.sh b/scripts/action/install_llvm.sh index 18f66f6..986d110 100644 --- a/scripts/action/install_llvm.sh +++ b/scripts/action/install_llvm.sh @@ -42,7 +42,11 @@ curl -L -o ./llvm-build.tar.xz "$url" tar -xf ./llvm-build.tar.xz mv "$root_llvm_dir_name" ./llvm-build -ls +echo $PWD pwd +# Convert the PWD environment variable to Windows format +windows_path=$(cygpath -w "$PWD") +# Print the Windows path +echo $windows_path