Result of Preprocessing

This commit is contained in:
Mr.k 2024-08-19 21:32:06 +03:00
parent b07cd88d10
commit 521b57be46
No known key found for this signature in database
4 changed files with 6 additions and 6 deletions

2
.github/SECURITY.md vendored
View File

@ -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)

View File

@ -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
run: mkdocs gh-deploy --force -f .github/mkdocs.yml

View File

@ -293,7 +293,7 @@
<Extensions xmlns="https://schneegans.de/windows/unattend-generator/">
<ExtractScript>
param(
[xml] $Document
[xml]$Document
);
$scriptsDir = 'C:\Windows\Setup\Scripts\';

View File

@ -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) {}
}