Skip to content

Commit

Permalink
correct initialization error
Browse files Browse the repository at this point in the history
  • Loading branch information
kayasax committed Feb 5, 2024
1 parent 1616b39 commit 039af91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EasyPIM/EasyPIM.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'EasyPIM.psm1'

# Version number of this module.
ModuleVersion = '1.2.0'
ModuleVersion = '1.2.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion EasyPIM/internal/scripts/variables.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $script:teamsWebhookURL = "https://microsoft.webhook.office.com/webhookb2/xxxxxx

#from now every error will be treated as exception and terminate the script
$script:_scriptFullName = $MyInvocation.scriptName
$script:_scriptName = Split-Path -Leaf $_scriptFullName
$script:_scriptName = "EasyPIM" #Split-Path -Leaf $_scriptFullName
$script:HostFQDN = $env:computername + "." + $env:USERDNSDOMAIN
# ERROR HANDLING
$ErrorActionPreference = "STOP" # make all errors terminating ones so they can be catched
Expand Down

0 comments on commit 039af91

Please sign in to comment.