diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 6b437033..be3f8839 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -1,5 +1,5 @@ # Security Policy -If you find a security issue please make post it in the issues tab. If you think it should be private you can email me at contact@christitus.com. +If you find a security issue please make post it in the issues tab. If you think it should be private you can email me at contact@christitus.com. For immediate response check out our discord server @ [![](https://dcbadge.limes.pink/api/server/https://discord.gg/RUbZUZyByQ?theme=default-inverted&style=for-the-badge)](https://discord.gg/RUbZUZyByQ) diff --git a/.github/workflows/github-pages.yaml b/.github/workflows/github-pages.yaml index b51697b8..d6db1edc 100644 --- a/.github/workflows/github-pages.yaml +++ b/.github/workflows/github-pages.yaml @@ -28,4 +28,4 @@ jobs: run: pip install -r .github/requirements.txt - name: Build & Deploy using 'mkdocs' - run: mkdocs gh-deploy --force -f .github/mkdocs.yml \ No newline at end of file + run: mkdocs gh-deploy --force -f .github/mkdocs.yml diff --git a/config/autounattend.xml b/config/autounattend.xml index c3a2f213..6a432641 100644 --- a/config/autounattend.xml +++ b/config/autounattend.xml @@ -293,7 +293,7 @@ param( - [xml] $Document + [xml]$Document ); $scriptsDir = 'C:\Windows\Setup\Scripts\'; diff --git a/scripts/main.ps1 b/scripts/main.ps1 index c1d476f4..ac27fa12 100644 --- a/scripts/main.ps1 +++ b/scripts/main.ps1 @@ -32,19 +32,19 @@ $sync.runspace.Open() # Create classes for different exceptions class WingetFailedInstall : Exception { - [string] $additionalData + [string]$additionalData WingetFailedInstall($Message) : base($Message) {} } class ChocoFailedInstall : Exception { - [string] $additionalData + [string]$additionalData ChocoFailedInstall($Message) : base($Message) {} } class GenericException : Exception { - [string] $additionalData + [string]$additionalData GenericException($Message) : base($Message) {} }