We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677fabc commit d16f6cfCopy full SHA for d16f6cf
Makefile
@@ -7,14 +7,17 @@ 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
16
bundle:
17
+ pwd && \
18
+ sudo chown -R "$(id -u):$(id -g)" target/ && \
19
rm -rf $(DIST) && \
20
+ ls -la && \
21
mkdir $(DIST) && \
22
cp pom.xml $(DIST)/talon-one-client-$(VERSION).pom && \
23
cp target/_remote.repositories $(DIST) && \
0 commit comments