You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/05/10 12:21:24 UTC

[tinkerpop] branch master updated: Fixed syntax error in deploy script for .NET CTR

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new b72880f  Fixed syntax error in deploy script for .NET CTR
b72880f is described below

commit b72880fc658abfc59812058ba0d70b8d05800dec
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Mon May 10 08:19:56 2021 -0400

    Fixed syntax error in deploy script for .NET CTR
---
 gremlin-dotnet/src/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-dotnet/src/pom.xml b/gremlin-dotnet/src/pom.xml
index 2726eaa..fd47522 100644
--- a/gremlin-dotnet/src/pom.xml
+++ b/gremlin-dotnet/src/pom.xml
@@ -329,7 +329,7 @@ file.write(file.getText("UTF-8").replaceFirst(/&lt;version&gt;(.*)&lt;\/version&
                                         <script><![CDATA[
 // prevent SNAPSHOT deployment for .NET
 def versionToUse = '${project.version}'
-if (versionToUse.endsWith("-SNAPSHOT")
+if (versionToUse.endsWith("-SNAPSHOT"))
   throw new RuntimeException("Current version is a SNAPSHOT which can not be deployed to nuget")
 ]]>
                                         </script>