Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revisions #20

Merged
merged 3 commits into from
Feb 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can find the latest releases and downloads for this module in the PowerShell

### Installation
```powershell
PS C:> Install-Module -Name IniConverter
PS > Install-Module -Name IniConverter
```
---

Expand Down Expand Up @@ -86,7 +86,7 @@ Test2 = world
test1 = hello
test2 = world

PS > $myobj = @{ TestSection = @{ tes1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > $myobj = @{ TestSection = @{ test1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > .\test.ini | Add-IniProperty -InputObject $myobj
PS > type .\test.ini
Test1 = hello
Expand Down
Binary file modified module/IniConverter.psd1
Binary file not shown.
2 changes: 1 addition & 1 deletion module/Public/Add-IniProperty.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Function Add-IniProperty {
test1 = hello
test2 = world

PS > $myobj = @{ TestSection = @{ tes1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > $myobj = @{ TestSection = @{ test1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > .\test.ini | Add-IniProperty -InputObject $myobj
PS > type .\test.ini
Test1 = hello
Expand Down
4 changes: 2 additions & 2 deletions module/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ You can find the latest releases and downloads for this module in the PowerShell

### Installation
```powershell
PS C:> Install-Module -Name IniConverter
PS > Install-Module -Name IniConverter
```
---

Expand Down Expand Up @@ -86,7 +86,7 @@ Test2 = world
test1 = hello
test2 = world

PS > $myobj = @{ TestSection = @{ tes1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > $myobj = @{ TestSection = @{ test1 = "updated"; }; TestSection2 = @{ hello = "world"; } }
PS > .\test.ini | Add-IniProperty -InputObject $myobj
PS > type .\test.ini
Test1 = hello
Expand Down