Skip to content

Instantly share code, notes, and snippets.

@vexx32
Last active May 24, 2019 12:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vexx32/1b78348bc2cf94437cee4a7a7eae2bcb to your computer and use it in GitHub Desktop.
Save vexx32/1b78348bc2cf94437cee4a7a7eae2bcb to your computer and use it in GitHub Desktop.
workflow Create-Package {
function Get-TestResult {
"Test1"
}
function Get-TestResult2 {
"Test2"
}
function Create-InternalPackage {
Get-TestResult
Get-TestResult2
}
$Test1, $Test2 = Create-InternalPackage
Write-Output $Test1
Write-Output $Test2
}
Create-Package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment