Skip to content

Commit

Permalink
Dont forget the semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Stringy committed Nov 30, 2023
1 parent ba63c51 commit b6b752c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel-modules/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ WORKDIR /kernel-modules
# the outcome
RUN /partition-probes.py "0" "${max_layer_size}" "." "/layers" && \
for i in "/layers"/*; do \
[[ -e "$i" && -s "$i" ]] || continue \
[[ -e "$i" && -s "$i" ]] || continue; \
mkdir -p "$(basename "$i")"; \
xargs -a "$i" mv -t "$(basename "$i")" ; \
done
Expand Down

0 comments on commit b6b752c

Please sign in to comment.