We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677fabc commit 4c9d83dCopy full SHA for 4c9d83d
1 file changed
Makefile
@@ -7,15 +7,16 @@ clean:
7
build: clean
8
docker run \
9
--rm \
10
- -v "$$(PWD)":/tmp/talon-client \
+ -v "$$(pwd)":/tmp/talon-client \
11
-w "/tmp/talon-client" \
12
maven:latest\
13
/bin/bash -c "mvn clean install && \
14
cp ~/.m2/repository/one/talon/talon-one-client/$(VERSION)/_remote.repositories target"
15
+ sudo chown -R "$(id -u):$(id -g)" target/
16
17
bundle:
18
rm -rf $(DIST) && \
- mkdir $(DIST) && \
19
+ mkdir -p $(DIST) && \
20
cp pom.xml $(DIST)/talon-one-client-$(VERSION).pom && \
21
cp target/_remote.repositories $(DIST) && \
22
cp target/talon-one-client-$(VERSION)-sources.jar $(DIST) && \
0 commit comments