Skip to content

Commit

Permalink
freebsd changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbuff committed Nov 3, 2023
1 parent b7863c2 commit 030a906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
6 changes: 3 additions & 3 deletions Public/Get-AtomicTechnique.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ filter Get-AtomicTechnique {
Outputs an object representing a parsed and validated atomic technique.
#>

[CmdletBinding(DefaultParameterSetName = 'FilePath')]
[OutputType([AtomicTechnique])]
param (
Expand Down Expand Up @@ -103,7 +103,7 @@ filter Get-AtomicTechnique {

$ParsedYaml = $null

$ValidSupportedPlatforms = @('windows', 'macos', 'linux', 'office-365', 'azure-ad', 'google-workspace', 'saas', 'iaas', 'containers', 'iaas:aws', 'iaas:azure', 'iaas:gcp')
$ValidSupportedPlatforms = @('windows', 'macos', 'linux', 'linux:freebsd', 'office-365', 'azure-ad', 'google-workspace', 'saas', 'iaas', 'containers', 'iaas:aws', 'iaas:azure', 'iaas:gcp')
$ValidInputArgTypes = @('Path', 'Url', 'String', 'Integer', 'Float')
$ValidExecutorTypes = @('command_prompt', 'sh', 'bash', 'powershell', 'manual', 'aws', 'az', 'gcloud', 'kubectl')

Expand Down Expand Up @@ -322,7 +322,7 @@ filter Get-AtomicTechnique {

$j = 0

foreach ($InputArgName in $AtomicTest['input_arguments'].Keys) {
foreach ($InputArgName in $AtomicTest['input_arguments'].Keys) {

$InputArgument = [AtomicInputArgument]::new()

Expand Down

0 comments on commit 030a906

Please sign in to comment.