Don't look for Debian package dependencies when skipping installers
Today, we always check to see if DebianPackageBuildDependencies are present on the machine doing a build, because we will need them to build the .deb files later on. Since we now allow skipping of building packages, don't check for these dependencies if we weren't going to use them.
This commit is contained in:
parent
f5f6adccb0
commit
0f092f92c2
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
|
||||
<Exec Command="dpkg -s %(UbuntuCoreclrAndCoreFxDependencies.Identity)" />
|
||||
|
||||
<Exec Command="dpkg -s %(DebianPackageBuildDependencies.Identity)" />
|
||||
<Exec Command="dpkg -s %(DebianPackageBuildDependencies.Identity)" Condition="$(SkipBuildingInstallers) != 'true'" />
|
||||
|
||||
<OnError ExecuteTargets="ShowAptGetUsage" />
|
||||
</Target>
|
||||
|
|
Loading…
Add table
Reference in a new issue