mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-06-28 09:04:47 -05:00
Result of Preprocessing
This commit is contained in:
2
.github/SECURITY.md
vendored
2
.github/SECURITY.md
vendored
@ -1,5 +1,5 @@
|
|||||||
# Security Policy
|
# 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://discord.gg/RUbZUZyByQ)
|
For immediate response check out our discord server @ [](https://discord.gg/RUbZUZyByQ)
|
||||||
|
2
.github/workflows/github-pages.yaml
vendored
2
.github/workflows/github-pages.yaml
vendored
@ -28,4 +28,4 @@ jobs:
|
|||||||
run: pip install -r .github/requirements.txt
|
run: pip install -r .github/requirements.txt
|
||||||
|
|
||||||
- name: Build & Deploy using 'mkdocs'
|
- name: Build & Deploy using 'mkdocs'
|
||||||
run: mkdocs gh-deploy --force -f .github/mkdocs.yml
|
run: mkdocs gh-deploy --force -f .github/mkdocs.yml
|
||||||
|
@ -293,7 +293,7 @@
|
|||||||
<Extensions xmlns="https://schneegans.de/windows/unattend-generator/">
|
<Extensions xmlns="https://schneegans.de/windows/unattend-generator/">
|
||||||
<ExtractScript>
|
<ExtractScript>
|
||||||
param(
|
param(
|
||||||
[xml] $Document
|
[xml]$Document
|
||||||
);
|
);
|
||||||
|
|
||||||
$scriptsDir = 'C:\Windows\Setup\Scripts\';
|
$scriptsDir = 'C:\Windows\Setup\Scripts\';
|
||||||
|
@ -32,19 +32,19 @@ $sync.runspace.Open()
|
|||||||
# Create classes for different exceptions
|
# Create classes for different exceptions
|
||||||
|
|
||||||
class WingetFailedInstall : Exception {
|
class WingetFailedInstall : Exception {
|
||||||
[string] $additionalData
|
[string]$additionalData
|
||||||
|
|
||||||
WingetFailedInstall($Message) : base($Message) {}
|
WingetFailedInstall($Message) : base($Message) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ChocoFailedInstall : Exception {
|
class ChocoFailedInstall : Exception {
|
||||||
[string] $additionalData
|
[string]$additionalData
|
||||||
|
|
||||||
ChocoFailedInstall($Message) : base($Message) {}
|
ChocoFailedInstall($Message) : base($Message) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
class GenericException : Exception {
|
class GenericException : Exception {
|
||||||
[string] $additionalData
|
[string]$additionalData
|
||||||
|
|
||||||
GenericException($Message) : base($Message) {}
|
GenericException($Message) : base($Message) {}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user