microsoft / Requirements

PowerShell framework for declaratively defining and idempotently imposing system configurations
MIT License
159 stars 26 forks source link

Type in Defining DSC Resources in README.md #5

Closed omiossec closed 5 years ago

omiossec commented 5 years ago

There is a small error in the README.md file regarding DSC in Requirement

    Property     = @{
        Contents        = "Hello World"
        DestinationFile = "C:\myFile.txt"
        Force           = $true
    }

Should be

Property     = @{
        Contents        = "Hello World"
        DestinationPath = "C:\myFile.txt"
        Force           = $true
    }

I will make a PR