core/pkgs/build-support/dotnet/dotnetbuildhelpers/placate-nuget.sh

8 lines
339 B
Bash
Raw Normal View History

2024-05-02 00:46:19 +00:00
#!/usr/bin/env bash
echo Placating Nuget in nuget.targets
find -iname nuget.targets -print -exec sed --in-place=bak -e 's,mono --runtime[^<]*,true NUGET PLACATED BY buildDotnetPackage,g' {} \;
echo Just to be sure, replacing Nuget executables by empty files.
find . -iname nuget.exe \! -size 0 -exec mv -v {} {}.bak \; -exec touch {} \;