Skip to content

Commit 87252b5

Browse files
committed
[pack] Create hardlink marker as part of build
1 parent 98f3c48 commit 87252b5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/build-extensions.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,10 @@ function CreateSiteExtensions() {
238238
Move-Item -Path "$officialSiteExtensionPath\64bit\workers" -Destination "$officialSiteExtensionPath\workers"
239239

240240
# This goes in the root dir
241-
Copy-Item $rootDir\src\WebJobs.Script.WebHost\extension.xml $siteExtensionPath > $null
241+
Copy-Item $rootDir\src\WebJobs.Script.WebHost\extension.xml $siteExtensionPath > $null
242+
243+
#This needs to be removed post Ant 99 as it's a temporary workaround
244+
New-Item "$siteExtensionPath\$extensionVersion.hardlinksCreated" > $null
242245

243246
Write-Host "Done copying. Elapsed: $($stopwatch.Elapsed)"
244247
Write-Host "======================================"

0 commit comments

Comments
 (0)