summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
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