Skip to content
Merged
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
5 changes: 4 additions & 1 deletion cli/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BINARY_NAME := ossie
BUILD_DIR := dist

.PHONY: build test lint release-dry-run clean
.PHONY: build test lint format release-dry-run clean

build:
go build -o $(BUILD_DIR)/$(BINARY_NAME) .
Expand All @@ -12,6 +12,9 @@ test:
lint:
go vet ./...

format:
gofmt -w .

release-dry-run:
goreleaser release --snapshot --clean --config .goreleaser.yaml

Expand Down
4 changes: 2 additions & 2 deletions cli/internal/ossiedir/ossiedir.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

const (
defaultOssieDir = ".ossie"
pluginsSubdir = "plugins"
envVar = "OSSIE_PLUGIN_DIR"
pluginsSubdir = "plugins"
envVar = "OSSIE_PLUGIN_DIR"
)

// PluginDir returns the resolved plugin directory path.
Expand Down
Loading