Skip to content

Commit

Permalink
fix incorrect operator in if
Browse files Browse the repository at this point in the history
  • Loading branch information
EricMountain committed Mar 6, 2024
1 parent b40d948 commit 6bbdda9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/cilium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN S=/tmp/install/${TARGETOS}/${TARGETARCH} && \
find -type f \
-executable \
-exec sh -c \
'objcopy --only-keep-debug $0 $0.debug && if [ $NOSTRIP -ne 1 ] ; then objcopy --strip-debug $0 ; fi && objcopy --add-gnu-debuglink=$0.debug $0 && mkdir -p $D/$(dirname $0) && mv ${0}.debug $D/$0.debug' {} \;
'objcopy --only-keep-debug $0 $0.debug && if [ "$NOSTRIP" != "1" ] ; then objcopy --strip-debug $0 ; fi && objcopy --add-gnu-debuglink=$0.debug $0 && mkdir -p $D/$(dirname $0) && mv ${0}.debug $D/$0.debug' {} \;

RUN find /tmp/debug

Expand Down

0 comments on commit 6bbdda9

Please sign in to comment.