Skip to content

Commit

Permalink
fix: paru.conf NoCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
ouuan committed Dec 9, 2024
1 parent 715070e commit 1a3d971
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ USER build
RUN git clone https://aur.archlinux.org/paru-bin.git
RUN cd paru-bin && makepkg -si --noconfirm

RUN mkdir -p .config/paru
COPY paru.conf .config/paru

COPY entrypoint.sh /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]
4 changes: 1 addition & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ fi

abspath="$(realpath "$path")"

echo "::group::Move files to $HOME"
HOME=/home/build
cd "$HOME"
echo "::group::Move files to $PWD"
cp -r "$abspath" .
cd "$(basename "$abspath")"
echo "::endgroup::"
Expand Down
4 changes: 4 additions & 0 deletions paru.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Include = /etc/paru.conf

[options]
NoCheck

0 comments on commit 1a3d971

Please sign in to comment.