Skip to content

Commit

Permalink
test(ci): windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziqi-Yang committed Jul 31, 2024
1 parent 8265d3b commit ef6c4da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/action/install_llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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


0 comments on commit ef6c4da

Please sign in to comment.