Skip to content

Commit

Permalink
fix missing \ in crossbuild.containerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar committed Dec 8, 2023
1 parent 530a731 commit 7b2b5da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/crossbuild.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ RUN [ "/native/bash", "-c", "PATH=/native:$PATH ./setup_native import $(awk '{ p
RUN gcc --print-search-dir \
&& echo 'int main() { return 0; }' > main.c \
&& gcc -o main main.c \
&& ./main
&& ./main \
&& find /tmp -mindepth 1 -delete

# Copy the build scripts from bin to /usr/local/bin
Expand Down

0 comments on commit 7b2b5da

Please sign in to comment.