Skip to content

Commit 00825a8

Browse files
authored
Fix 167 (#168)
1 parent ef451c3 commit 00825a8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.1.3
2+
- Fix [#167](https://github.com/Snow-Shell/servicenow-powershell/issues/167), fix ServiceNowTable not being populated on Linux due to file name case
3+
14
## 3.1.2
25
- Fix [#160](https://github.com/Snow-Shell/servicenow-powershell/issues/160), adding an attachment to catalog tasks not working for instances created pre-Istanbul. Thanks @natescherer!
36

ServiceNow/ServiceNow.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
RootModule = 'ServiceNow.psm1'
66

77
# Version number of this module.
8-
ModuleVersion = '3.1.2'
8+
ModuleVersion = '3.1.3'
99

1010
# ID used to uniquely identify this module
1111
GUID = 'b90d67da-f8d0-4406-ad74-89d169cd0633'

ServiceNow/ServiceNow.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ param()
33

44
Write-Verbose $PSScriptRoot
55

6-
$config = ConvertFrom-Json (Get-Content "$PSScriptRoot\Config\main.json" -Raw)
6+
$config = ConvertFrom-Json (Get-Content "$PSScriptRoot\config\main.json" -Raw)
77
$Script:ServiceNowOperator = $config.FilterOperators
88
[System.Collections.ArrayList] $script:ServiceNowTable = $config.Tables
99

0 commit comments

Comments
 (0)