Skip to content

Commit

Permalink
Fixed list of scripts to install
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille authored and github-actions[bot] committed May 8, 2024
1 parent abc2d81 commit 3dd29cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/pacstall/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ SHELL [ "bash", "-clo", "errexit" ]
ARG name
ARG version
RUN <<EOF
set -e -x

curl --silent --show-error --location --fail --output "${prefix}/bin/pacstall" \
"https://github.com/pacstall/pacstall/raw/${version}/pacstall"
chmod +x "${prefix}/bin/pacstall"

curl --silent --show-error --location --fail --output "${prefix}/share/man/man8/pacstall.8.gz" \
"https://github.com/pacstall/pacstall/raw/${version}/misc/pacstall.8.gz"

for script in add-repo checks dep-tree download error_log install-local query-info remove search update upgrade; do
for script in error-log add-repo search dep-tree version-constraints checks get-pacscript package fetch-sources build upgrade remove update query-info quality-assurance bwrap; do
curl --silent --show-error --location --fail --output "${prefix}/share/pacstall/scripts/${script}.sh" --create-dirs \
"https://github.com/pacstall/pacstall/raw/${version}/misc/scripts/${script}.sh"
chmod +x "${prefix}/share/pacstall/scripts/${script}.sh"
Expand Down

0 comments on commit 3dd29cb

Please sign in to comment.