Skip to content

Commit

Permalink
Remove -executable flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Oct 25, 2024
1 parent 617bb80 commit dd1d896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN readlink /sage/venv >> /sage/venv_link
WORKDIR /sage

# Strip executables in /sage
RUN LC_ALL=C find local src pkgs -executable -type f -exec strip '{}' ';' 2>&1 | grep -v "file format not recognized" || true
RUN LC_ALL=C find local src pkgs -type f -exec strip '{}' ';' 2>&1 | grep -v "file format not recognized" || true

# To exclude doc directory in the next stage
RUN rm -rf local/share/doc
Expand Down

0 comments on commit dd1d896

Please sign in to comment.