From ad033268c6aa201ea938030adba531382b491f4d Mon Sep 17 00:00:00 2001 From: Albert Ho Date: Thu, 8 Aug 2024 16:10:26 -0700 Subject: [PATCH] rm pack step --- .github/workflows/dotnet-demos.yml | 11 ----------- binding/go/rhino.go | 1 - 2 files changed, 12 deletions(-) diff --git a/.github/workflows/dotnet-demos.yml b/.github/workflows/dotnet-demos.yml index 32b83263..1585b652 100644 --- a/.github/workflows/dotnet-demos.yml +++ b/.github/workflows/dotnet-demos.yml @@ -42,17 +42,6 @@ jobs: with: dotnet-version: 6.0.x - # ************** REMOVE AFTER RELEASE ******************** - - name: Pack .NET SDK - run: | - dotnet build - dotnet pack -c Release - working-directory: binding/dotnet - - - name: Add local NuGet package file - run: dotnet add package -s ../../../binding/dotnet/Rhino/bin/Release Rhino - # ******************************************************** - - name: Dotnet build micdemo run: dotnet build -c MicDemo.Release diff --git a/binding/go/rhino.go b/binding/go/rhino.go index 8a24cadc..ceb195c4 100644 --- a/binding/go/rhino.go +++ b/binding/go/rhino.go @@ -249,7 +249,6 @@ func (rhino *Rhino) Init() error { if PvStatus(status) != SUCCESS { errorStatus, messageStack := nativeRhino.nativeGetErrorStack() if errorStatus != SUCCESS { - fmt.Sprintf("ERROR_STATUS (%d) | MESSAGE_STACK: %s", errorStatus, messageStack) return &RhinoError{ StatusCode: errorStatus, Message: "Unable to get Rhino error state",