diff --git a/src/Sergen.Main/Resources/Install.sh b/src/Sergen.Main/Resources/Install.sh index 88b3cf5..0a21e52 100755 --- a/src/Sergen.Main/Resources/Install.sh +++ b/src/Sergen.Main/Resources/Install.sh @@ -41,14 +41,14 @@ if command -v apt > /dev/null; then fi # Check if dotnet6 is installed - if ! dpkg -l | grep -q dotnet-runtime-6.0; then - echo "dotnet-runtime-6.0 not found, installing." - apt install -y dotnet-runtime-6.0 + if ! dpkg -l | grep -q dotnet-sdk-6.0; then + echo "dotnet-sdk-6.0 not found, installing." + apt install -y dotnet-sdk-6.0 else - echo "dotnet-runtime-6.0 is already installed, skipping installation." + echo "dotnet-sdk-6.0 is already installed, skipping installation." fi - echo "podman and dotnet-runtime-6.0 installation checks complete." + echo "podman and dotnet-sdk-6.0 installation checks complete." else - echo "apt not found. Skipping podman and dotnet6 installation." + echo "apt not found. Skipping podman and dotnet-sdk-6.0 installation." fi