Skip to content

Commit 25fd012

Browse files
committed
ci: make parameter mandatory
1 parent 0bc345a commit 25fd012

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

scripts/clean-typescript-ccs-files.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ param (
22
[Parameter(Mandatory = $true)]
33
[string]
44
$targetDirectory,
5+
[Parameter(Mandatory = $true)]
56
[string]
6-
$packageName = "@microsoft/agents-m365copilot"
7+
$packageName
78
)
89
Push-Location $targetDirectory
910

11+
Write-Host "Starting cleaning operation in target directory: $targetDirectory"
12+
1013
$kiotaLockFileName = "kiota-lock.json"
1114
# Extract folder name from package name (the part after the slash)
1215
$folderToClean = $packageName.Split("/")[1]

scripts/copy-ccs-typescript-sdk-models.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ param (
55
[Parameter(Mandatory = $true)]
66
[string]
77
$sourceDirectory,
8+
[Parameter(Mandatory = $true)]
89
[string]
9-
$packageName = "@microsoft/copilot-beta-sdk"
10+
$packageName
1011
)
1112

1213
Write-Host "Path to repo models directory: $targetDirectory"

0 commit comments

Comments
 (0)