We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84ea54b commit 4169132Copy full SHA for 4169132
1 file changed
profile/profile.ps1
@@ -48,7 +48,7 @@ function Init-Environment {
48
Write-Verbose "启用代理设置: $ProxyUrl"
49
$Env:http_proxy = $ProxyUrl
50
$Env:https_proxy = $ProxyUrl
51
- Write-Host "已设置代理: $ProxyUrl" -ForegroundColor Green
+ Write-Debug "已设置代理: $ProxyUrl"
52
}
53
else {
54
Write-Verbose "跳过代理设置"
@@ -138,11 +138,12 @@ function Init-Environment {
138
Add-CondaEnv
139
140
141
- Write-Host "PowerShell环境初始化完成" -ForegroundColor Green
+ # Write-Host "PowerShell环境初始化完成" -ForegroundColor Green
142
+ Write-Debug "PowerShell环境初始化完成"
143
144
145
# 调用环境初始化函数
-Init-Environment
146
+Init-Environment
147
148
# 配置git,解决中文文件名不能正常显示的问题
149
# git config --global core.quotepath false
0 commit comments