Skip to content

Commit 886fab9

Browse files
Use --progress=plain docker arg for full log output (#346)
Also avoid listing all files in tar command
1 parent 286f2e7 commit 886fab9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ RUN \
9494
# Create tarball
9595
&& mv /output /crystal-${crystal_version}-${package_iteration} \
9696
&& mkdir /output \
97-
&& tar -cvf /output/crystal-${crystal_version}-${package_iteration}.tar /crystal-${crystal_version}-${package_iteration}
97+
&& tar -cf /output/crystal-${crystal_version}-${package_iteration}.tar /crystal-${crystal_version}-${package_iteration}

linux/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ LIBEVENT_VERSION = release-2.1.12-stable
2929
OUTPUT_DIR = build
3030
OUTPUT_BASENAME64 = $(OUTPUT_DIR)/crystal-$(CRYSTAL_VERSION)-$(PACKAGE_ITERATION)-linux-x86_64
3131

32-
DOCKER_BUILD_ARGS = $(if $(no_cache),--no-cache )$(if $(pull_images),--pull )
32+
DOCKER_BUILD_ARGS = $(if $(no_cache),--no-cache )$(if $(pull_images),--pull ) --progress=plain
3333

3434
BUILD_ARGS_COMMON = $(DOCKER_BUILD_ARGS) \
3535
$(if $(release),--build-arg release=true) \

linux/bundled.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ COPY --from=libevent libevent/.libs/libevent.a libevent/.libs/libevent_pthreads.
3939
# Create tarball
4040
RUN mv /output /crystal-${crystal_version}-${package_iteration} \
4141
&& mkdir /output \
42-
&& tar -cvf /output/bundled-libs.tar /crystal-${crystal_version}-${package_iteration}
42+
&& tar -cf /output/bundled-libs.tar /crystal-${crystal_version}-${package_iteration}

0 commit comments

Comments
 (0)