File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ function Check-ExitCode($command) {
43
43
}
44
44
45
45
function Prepare () {
46
+ echo " === $ ( $MyInvocation.MyCommand.Name ) ==="
47
+
46
48
$script :startDir = $pwd
47
49
$selectedConfiguration = $FirebirdConfiguration [$FirebirdSelection ]
48
50
$fbDownload = $selectedConfiguration.Download
@@ -67,14 +69,20 @@ function Prepare() {
67
69
68
70
echo " Starting Firebird"
69
71
$script :firebirdProcess = Start-Process - FilePath $selectedConfiguration.Executable - ArgumentList $selectedConfiguration.Args - PassThru
72
+
73
+ echo " === END ==="
70
74
}
71
75
72
76
function Cleanup () {
77
+ echo " === $ ( $MyInvocation.MyCommand.Name ) ==="
78
+
73
79
cd $script :startDir
74
80
$process = $script :firebirdProcess
75
81
$process.Kill ()
76
82
$process.WaitForExit ()
77
83
rm - Force - Recurse $firebirdDir
84
+
85
+ echo " === END ==="
78
86
}
79
87
80
88
function Tests-All () {
You can’t perform that action at this time.
0 commit comments