Github user dkuppitz commented on the issue:

    https://github.com/apache/tinkerpop/pull/444
  
    @okram We could get rid of the additional release steps if we would remove 
the 2 extra `gremlin.sh` files. Any reason why you prefer those? If you're just 
too lazy to type out the `target` path, you could create a bash alias. Look, 
that's what I have in my `~/.bashrc`:
    
    ```
    gremlin() {
      args=$@
      pushd 
/projects/apache/tinkerpop/gremlin-console/target/*-gremlin-console-*-standalone
 > /dev/null
      if [ $? -eq 0 ]; then
        bin/gremlin.sh ${args}
        popd > /dev/null
      else
        echo "Gremlin Console binary does not exist."
      fi
    }
    
    alias g=gremlin
    ```
    
    And here's how it works:
    
    ```
    daniel@cube ~ $ g -v
    gremlin 3.1.5-SNAPSHOT
    daniel@cube ~ $ g
    
             \,,,/
             (o o)
    -----oOOo-(3)-oOOo-----
    plugin activated: tinkerpop.server
    plugin activated: tinkerpop.utilities
    plugin activated: tinkerpop.tinkergraph
    gremlin> 
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to