...

Text file src/github.com/ory/fosite/scripts/run-format.sh

Documentation: github.com/ory/fosite/scripts

     1#!/bin/bash
     2
     3set -euo pipefail
     4
     5cd "$( dirname "${BASH_SOURCE[0]}" )/.."
     6
     7goimports -w $(go list -f {{.Dir}} ./... | grep -v vendor | grep -v fosite$)
     8goimports -w *.go

View as plain text