@@ -12,12 +12,12 @@ if (-not $IsLinux)
1212Write-Host " "
1313Write-Host " This script installs Dev Proxy on your machine. It runs the following steps:"
1414Write-Host " "
15- Write-Host " 1. Create the 'devproxy' directory in the current working folder"
15+ Write-Host " 1. Create the 'devproxy-beta ' directory in the current working folder"
1616Write-Host " 2. Download the latest beta Dev Proxy release"
17- Write-Host " 3. Unzip the release in the devproxy directory"
18- Write-Host " 4. Configure devproxy and its files as executable (Linux and macOS only)"
17+ Write-Host " 3. Unzip the release in the devproxy-beta directory"
18+ Write-Host " 4. Configure Dev Proxy and its files as executable (Linux and macOS only)"
1919Write-Host " 5. Configure new version notifications for the beta channel"
20- Write-Host " 6. Add the devproxy directory to your PATH environment variable in `$ PROFILE.CurrentUserAllHosts"
20+ Write-Host " 6. Add the devproxy-beta directory to your PATH environment variable in `$ PROFILE.CurrentUserAllHosts"
2121Write-Host " "
2222Write-Host " Continue (y/n)? " - NoNewline
2323$response = [System.Console ]::ReadKey().KeyChar
@@ -29,8 +29,8 @@ if ($response -notin @('y', 'Y')) {
2929
3030Write-Host " `n "
3131
32- New-Item - ItemType Directory - Force - Path .\devproxy - ErrorAction Stop | Out-Null
33- Set-Location .\devproxy | Out-Null
32+ New-Item - ItemType Directory - Force - Path .\devproxy- beta - ErrorAction Stop | Out-Null
33+ Set-Location .\devproxy- beta | Out-Null
3434
3535# Get the full path of the current directory
3636$full_path = Resolve-Path .
@@ -75,7 +75,7 @@ if (!(Test-Path $PROFILE.CurrentUserAllHosts)) {
7575}
7676
7777if (! (Select-String - Path $PROFILE.CurrentUserAllHosts - Pattern " devproxy" )) {
78- Write-Host " Adding devproxy to `$ PROFILE.CurrentUserAllHosts..."
78+ Write-Host " Adding Dev Proxy to `$ PROFILE.CurrentUserAllHosts..."
7979 Add-Content - Path $PROFILE.CurrentUserAllHosts - Value " $ ( [Environment ]::NewLine) `$ env:PATH += `" $ ( [IO.Path ]::PathSeparator) $full_path `" "
8080}
8181
0 commit comments