We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45a9ecc commit 0bbe643Copy full SHA for 0bbe643
2 files changed
.gitignore
@@ -10,4 +10,6 @@ docker_data/
10
11
# pester配置文件
12
coverage.xml
13
-testResults.xml
+testResults.xml
14
+# 加载环境变量
15
+env.ps1
profile/profile.ps1
@@ -14,6 +14,10 @@ if (Test-Path -Path "$PSScriptRoot\enableProxy") {
}
16
17
+if(Test-Path -Path "$PSScriptRoot/env.ps1"){
18
+ . $PSScriptRoot/env.ps1
19
+}
20
+
21
22
23
0 commit comments