summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-07-14 12:20:01 -0600
committermo khan <mo.khan@gmail.com>2020-07-14 20:59:50 -0600
commit4b9540b7724f89b2c3d2850193721abd415421f6 (patch)
tree290e40b1b3f3c24579ed780e83ce55293e4b1de7 /run.sh
parentd8b18764499ed0378d5f5caf0d68460c39510cfe (diff)
Fetch dependencies from a custom dotnet source
* Install custom ca certificate in location where nuget can recognize it * Add subject alternative name to the generate x509 cert * Do not cache packages and https requests * Detect vbproj, fsproj, csproj, and sln files * Improve nuget package detection * Parse SPDX license expression from nuspec files * Update version and update CHANGELOG
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh5
1 files changed, 0 insertions, 5 deletions
diff --git a/run.sh b/run.sh
index 36231ea..f318908 100755
--- a/run.sh
+++ b/run.sh
@@ -54,10 +54,6 @@ function scan_project() {
license_management report $@
}
-function prepare_dotnet() {
- [[ $(ls ./*.sln 2> /dev/null) ]] && RECURSIVE="--recursive"
-}
-
function prepare_java() {
if [ -n "$LM_JAVA_VERSION" ]; then
switch_to java "adoptopenjdk-${LM_JAVA_VERSION}"
@@ -91,7 +87,6 @@ function prepare_project() {
if [[ -z ${SETUP_CMD:-} ]]; then
prepare_tools || true
- prepare_dotnet || true
else
echo "Running '${SETUP_CMD}' to install project dependencies…"
# shellcheck disable=SC2068