Skip to content

Commit

Permalink
Update build.fsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmelsayed committed Mar 27, 2018
1 parent 7ab8df8 commit 6fc65bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ let blobClient = lazy storageAccount.Value.CreateCloudBlobClient ()
let queueClient = lazy storageAccount.Value.CreateCloudQueueClient ()

Target "UploadZipToSign" (fun _ ->
let container = blobClient.Value.GetContainerReference "azure-functions-cli"
let container = blobClient.Value.GetContainerReference "azure-functions-build-sdk"
container.CreateIfNotExists () |> ignore
let uploadZip fileName =
let blobRef = container.GetBlockBlobReference fileName
Expand All @@ -107,7 +107,7 @@ Target "EnqueueSignMessage" (fun _ ->

Target "WaitForSigning" (fun _ ->
let rec downloadFile fileName (startTime: DateTime) = async {
let container = blobClient.Value.GetContainerReference "azure-functions-cli-signed"
let container = blobClient.Value.GetContainerReference "azure-functions-build-sdk-signed"
container.CreateIfNotExists () |> ignore
let blob = container.GetBlockBlobReference fileName
if blob.Exists () then
Expand Down

0 comments on commit 6fc65bd

Please sign in to comment.