From 90e4bd68f8c3ced212e7224c406a4ef89ca290c6 Mon Sep 17 00:00:00 2001 From: Mike Gatny Date: Fri, 12 May 2023 10:12:24 -0400 Subject: [PATCH] Removing these, the pwsh scripts work on linux --- build.sh | 9 --------- unit_test.sh | 12 ------------ 2 files changed, 21 deletions(-) delete mode 100755 build.sh delete mode 100755 unit_test.sh diff --git a/build.sh b/build.sh deleted file mode 100755 index 20d574efd..000000000 --- a/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -CONFIGURATION=$1 - -[ -z $CONFIGURATION ] && CONFIGURATION=Release - -BUILD_CMD="dotnet build -c ${CONFIGURATION}" -echo "Build command: $BUILD_CMD" -exec $BUILD_CMD diff --git a/unit_test.sh b/unit_test.sh deleted file mode 100755 index 3ce0c58df..000000000 --- a/unit_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -# - -RESULT=0 - -set +e - -dotnet test -c Release --no-build --no-restore UnitTests -l trx - -RESULT=$? - -exit $RESULT