Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spelling: Remove deprecated --no-install, replace with --no #9013

Merged
merged 10 commits into from
Sep 24, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ Describe 'Spell checking' -Tag 'UnitTest' {
Push-Location $workingDirectory | Out-Null
git init

# Set up git user information for this specific repo if no user
# information is set globally. Windows DevOps machines do not have a
# global git identity set.
if (!(git config --get user.email)) {
git config user.email "[email protected]"
}
if (!(git config --get user.name)) {
git config user.name "Test User"
}

New-Item -ItemType Directory -Force -Path "./excluded"
New-Item -ItemType Directory -Force -Path "./included"
New-Item -ItemType Directory -Force -Path "./.vscode"
Expand Down
Loading