Skip to content

Commit b881fff

Browse files
committed
fix syntax/typo around shell pipeline
The first line is a shell redirection so the first processes's stdin corresponds to a file; the second line is the first process. Remove the stray pipeline between them. Signed-off-by: Jonathan Dowland <[email protected]>
1 parent 06357e1 commit b881fff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/jlink/artifacts/opt/jboss/container/java/jlink/mkstrippeddeps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44
function mkstrippeddeps() {
55
if [ -f "deps.txt" ]; then
66
echo "deps exists, filtering"
7-
<deps.txt | \
7+
<deps.txt \
88
grep 'java\|jdk\.' | # mostly removes target/, but also jdk8internals
99
sed -E "s/Warning: .*//" | #remove extraneous warnings
1010
sed -E "s/.*-> //" | # remove src of src -> dep

0 commit comments

Comments
 (0)