github.com/stevenshuang/glide@v0.13.3/docs/glide-plugin-example (about)

     1  #!/bin/bash
     2  
     3  # You can execute me through Glide by doing the following:
     4  # - Copy me to a directory on $PATH. _vendor/bin/ will work just fine.
     5  # - Execute `glide plugin-example`
     6  # - ???
     7  # - Profit
     8  
     9  echo "I received arguments '$@'"
    10  
    11  # This should match the directory from which you executed glide.
    12  echo "My current working directory is $(pwd)"
    13  
    14  # This is the GOPATH for the current glide session.
    15  echo "My GOPATH is $GOPATH"
    16  
    17  # This is the base directory of your project.
    18  echo "The project directory is $GLIDE_PROJECT"
    19  
    20  # This is the location of the glide.yaml file.
    21  echo "The Glide YAML is in $GLIDE_YAML"
    22  
    23  # This is the PATH that the plugin inherited.
    24  echo "My PATH is $PATH"
    25