Skip to content

Commit

Permalink
Merge pull request #29 from ko4life-net/release/1.1.0
Browse files Browse the repository at this point in the history
Bump version from 1.0.2 to 1.1.0.
  • Loading branch information
stevewgr committed May 22, 2024
2 parents 43d915a + d5a8a7f commit 437af91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.1.0
4 changes: 3 additions & 1 deletion utils.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ function ValidateServerNameInput {
$sql_instances = @($sql_instances | Where-Object { $_ -ne "MSSQLSERVER" })
if ($sql_instances) {
MessageError "Available sql named instances: [$($sql_instances -join ', ')]"
MessageError "Example: .\odbcad.ps1 -server_name .\$($sql_instances[-1])"
$invoker_script_name = ($MyInvocation.PSCommandPath -split "\\")[-1]
MessageError "Example: .\$invoker_script_name -server_name "".\$($sql_instances[-1])"""
exit 1
}
return $false
}
Expand Down

0 comments on commit 437af91

Please sign in to comment.