Skip to content

Commit e6e256a

Browse files
committed
chore: translate comments in justfile from Japanese to English
1 parent 84a2a9d commit e6e256a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

justfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# デフォルトのバージョン
1+
# Default version
22
version := "dev"
33

4-
# バージョンを指定してビルド
4+
# Build with specified version
55
build: clean
66
go build -ldflags "-X github.com/appthrust/kutelog/pkg/version.Version={{version}}" -o dist/kutelog ./cmd/main.go
77

8-
# クロスビルド
8+
# Cross-platform build
99
build-all: clean
1010
# Linux (amd64, arm64)
1111
GOOS=linux GOARCH=amd64 go build -ldflags "-X github.com/appthrust/kutelog/pkg/version.Version={{version}}" -o dist/kutelog-linux-amd64 ./cmd/main.go
@@ -16,11 +16,11 @@ build-all: clean
1616
# Windows (amd64)
1717
GOOS=windows GOARCH=amd64 go build -ldflags "-X github.com/appthrust/kutelog/pkg/version.Version={{version}}" -o dist/kutelog-windows-amd64.exe ./cmd/main.go
1818

19-
# /usr/local/bin にインストール
19+
# Install to /usr/local/bin
2020
install: build
2121
sudo cp dist/kutelog /usr/local/bin/kutelog
2222

23-
# distディレクトリをクリーンアップ
23+
# Clean up dist directory
2424
clean:
2525
rm -rf dist
2626
mkdir -p dist

0 commit comments

Comments
 (0)