Skip to content

Commit

Permalink
fix: fixed dotenv not running on first launch (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnimus committed Jun 10, 2023
1 parent 361f7cb commit f9630d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/Dotenv.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = "Dotenv.psm1"
ModuleVersion = "1.0.0"
ModuleVersion = "1.0.1"
Author = "Taylan Gökkaya<[email protected]>"
CompatiblePSEditions = @("Core")
GUID = '3bb5d7a3-985c-4d74-a329-8dddb075e322'
Expand Down
2 changes: 1 addition & 1 deletion module/Dotenv.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $ExecutionContext.SessionState.Module.OnRemove += {
}
}

[string]$lastdir = $pwd.providerpath
[string]$lastdir = ""

function Clear-DotenvJobs {
Get-Job -State Completed `
Expand Down

0 comments on commit f9630d3

Please sign in to comment.