Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cmd/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ fi

# Run our generator
echo "Generating Godot classes..."
go run $GOPATH/src/github.com/shadowapex/godot-go/cmd/generate/generate.go | gofmt > $PKG_PATH/godot/classes.go
go run $GOPATH/src/github.com/shadowapex/godot-go/cmd/generate/generate.go

# Format all our code
echo "Running gofmt on generated classes..."
find $PKG_PATH -name '*.go' -not -path '*/\.*' -exec gofmt -w {} \;
Loading