You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$buildProfileScriptPath="`"$thisScriptDirectory\BuildProfile.ps1`""# Guard against spaces in the path
13
+
$sourcesRoot="$workspaceDirectory\src\clu"
14
+
15
+
if (!($dropLocation))
16
+
{
17
+
$dropLocation="$workspaceDirectory\drop"
18
+
}
19
+
20
+
if (!(Test-Path-Path $dropLocation-PathType Container))
21
+
{
22
+
mkdir "$dropLocation"
23
+
mkdir "$dropLocation\CommandRepo"
24
+
mkdir "$dropLocation\clurun"
25
+
}
26
+
27
+
28
+
29
+
if (!($excludeCommandPackages.IsPresent))
30
+
{
31
+
# Grap all command packages to build.
32
+
# We'll assume that all directories that contain a *.nuspec.template file is a command package and that the name of the package is everything leading up to .nuspec.template
0 commit comments