Skip to content

Commit 6ff93cb

Browse files
authored
chore: fix Makefile not work in Linux and non-interactive mode (#373)
1 parent aecf120 commit 6ff93cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ check-doc-gen: doc-gen
9292

9393
.PHONY: license
9494
license: clean
95-
docker run -it --rm -v $(shell pwd):/github/workspace ghcr.io/apache/skywalking-eyes/license-eye:20da317d1ad158e79e24355fdc28f53370e94c8a header check
95+
docker run -i --rm -v $(shell pwd):/github/workspace ghcr.io/apache/skywalking-eyes/license-eye:20da317d1ad158e79e24355fdc28f53370e94c8a header check
9696

9797
.PHONY: test
9898
test: env
@@ -132,6 +132,6 @@ clean:
132132

133133
.PHONY: release
134134
release: clean lint license
135-
tar -zcvf skywalking-python-src-$VERSION.tgz --exclude .venv *
136-
gpg --batch --yes --armor --detach-sig skywalking-python-src-$VERSION.tgz
137-
shasum -a 512 skywalking-python-src-$VERSION.tgz > skywalking-python-src-$VERSION.tgz.sha512
135+
tar -zcvf skywalking-python-src-$(VERSION).tgz --exclude .venv *
136+
gpg --batch --yes --armor --detach-sig skywalking-python-src-$(VERSION).tgz
137+
shasum -a 512 skywalking-python-src-$(VERSION).tgz > skywalking-python-src-$(VERSION).tgz.sha512

0 commit comments

Comments
 (0)