Skip to content

Commit 028959d

Browse files
authored
Merge pull request #149 from dataplat/development
v0.8.1
2 parents 07b02d1 + 76b1bd6 commit 028959d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

dbops.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Set-PSFConfig -FullName dbops.security.usecustomencryptionkey -Value ($PSVersion
192192
Set-PSFConfig -FullName dbops.rdbms.type -Value 'SqlServer' -Validation connectionType -Initialize -Description "Assumes a certain RDBMS as a default one for each command. SQLServer by default"
193193
Set-PSFConfig -FullName dbops.package.slim -Value $false -Validation bool -Initialize -Description "Decides whether to make the packages 'slim' and omit module files when creating the package. Default: `$false"
194194
Set-PSFConfig -FullName dbops.config.variabletoken -Value "\#\{(token)\}" -Validation tokenRegex -Initialize -Description "Variable replacement token. Regex string that will be replaced with values from -Variables parameters. Default: \#\{(token)\}"
195-
$dotNet = try { dotnet --version } catch { $null }
195+
$dotNet = try { & { dotnet --version } } catch { $null }
196196
Set-PSFConfig -FullName dbops.runtime.dotnetversion -Value ($dotNet -as [version]) -Description "Current dotnet runtime." -Hidden
197197
Set-PSFConfig -FullName dbops.ErrorActionPreference -Value Stop -Initialize -Description "Module ErrorAction default value" -Validation errorAction
198198

docs/changelog.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Release notes for v0.8.1:
2+
- ### Wrapper around dotnet call to filter output (#148) by @nvarscar
13
# Release notes for v0.8.0:
24
- ### Hotfix: Nuget downloads now use lowercase filename in the URL (#139) by @nvarscar
35
- ### Feature: Allow ErrorAction to properly handle errors (#140) by @nvarscar

0 commit comments

Comments
 (0)