Skip to content

Commit

Permalink
Add --no-overwrite-dir flag to urv containerfile
Browse files Browse the repository at this point in the history
Container building is failing because of permissions errors.
I found this solution at:
https://unix.stackexchange.com/questions/210371/untar-error-cannot-change-mode-to-rwxr-sr-x
  • Loading branch information
Unike267 committed Dec 23, 2024
1 parent 351e3dd commit 798c629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/urv-toolchain-spec_def.containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update -qq \
&& apt-get install -y xz-utils \
&& apt-get install -y make \
&& curl -L -o riscv-11.2-small.tgz https://ohwr.org/project/wrpc-sw/wikis/uploads/9f9224d2249848ed3e854636de9c08dc/riscv-11.2-small.tgz \
&& tar xzvf riscv-11.2-small.tgz -C . --no-same-owner \
&& tar xzvf riscv-11.2-small.tgz -C . --no-same-owner --no-overwrite-dir\
&& export CROSS_COMPILE="/riscv-11.2-small/bin/riscv32-elf-" \
&& apt-get install -y git \
&& git clone --recursive https://ohwr.org/project/wrpc-sw \
Expand Down

0 comments on commit 798c629

Please sign in to comment.