diff --git a/samples/deployment-script/hello.ps1 b/samples/deployment-script/hello.ps1 new file mode 100644 index 0000000..04d7c73 --- /dev/null +++ b/samples/deployment-script/hello.ps1 @@ -0,0 +1,3 @@ +param([string] $name) +$output = "Hello {0}" -f $name +Write-Output "Output is: '$output'." \ No newline at end of file diff --git a/samples/deployment-script/hello.sh b/samples/deployment-script/hello.sh new file mode 100644 index 0000000..acd15a9 --- /dev/null +++ b/samples/deployment-script/hello.sh @@ -0,0 +1,2 @@ +output="Hello $1" +echo $output \ No newline at end of file