We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90390ef commit c1f9d81Copy full SHA for c1f9d81
package.ps1
@@ -16,9 +16,9 @@ New-Item .\package\temp\index.js -type file -f
16
17
get-content .\config\$environmentFile,".\index.js" | set-content ".\package\temp\index.js"
18
19
-$version = Read-Host -Prompt 'What version of the application are you deploying?'
+$packageName = "LambdaFunction"
20
21
-$destination = $currentdir + "\package\" + $version + ".zip"
+$destination = $currentdir + "\package\" + $packageName + ".zip"
22
23
Add-Type -assembly "system.io.compression.filesystem"
24
[io.compression.zipfile]::CreateFromDirectory($currentdir + "\package\temp", $destination)
0 commit comments