Skip to content

Commit 2b5bcbd

Browse files
committed
update
1 parent c02628d commit 2b5bcbd

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,11 @@ It's easy to delete all images. The local system will not be polluted with maven
4646
Build the buld image:
4747
> docker build -t "jonglisto-ng:build" https://github.com/Zabrimus/jonglisto-ng.git#:docker/build-image
4848
49-
Build jonglisto using the build image:
50-
> docker run -v `` ` ``pwd`` ` ``:/tmp/jonglisto-ng/build/libs jonglisto-ng:build /bin/bash -c "cd /tmp/jonglisto-ng; git pull; ./gradlew war"
49+
Build jonglisto using the build image (without channel logos):
50+
> docker run -v `` ` ``pwd`` ` ``:/tmp/jonglisto-ng/build/libs jonglisto-ng:build /bin/bash -c "cd /tmp/jonglisto-ng; git pull; ./gradlew war; ./gradlew copySamples"
51+
52+
Build jonglisto using the build image (with channel logos):
53+
> docker run -v `` ` ``pwd`` ` ``:/tmp/jonglisto-ng/build/libs jonglisto-ng:build /bin/bash -c "cd /tmp/jonglisto-ng; git pull; (cd tools; ./build-logo-jar.sh); ././gradlew war; ./gradlew copySamples"
5154
5255
The war file can be found in the current directory with name jonglistp-ng.'version'.war
5356

tools/build-logo-jar.sh

+4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ fi;
1010
# create logos
1111
cp icon-settings/*.conf picicon-repo/build-input
1212
cd picicon-repo
13+
14+
echo "Start building the channel logos... This can take some time."
1315
./2-build-picons.sh snp-full
1416

17+
echo "Building finished..."
18+
1519
# repack the result
1620
mkdir -p logo
1721
tar -xf build-output/binaries-snp-full/snp-full.*hardlink.tar.xz -C logo --strip 1

0 commit comments

Comments
 (0)