Skip to content

Commit

Permalink
rust: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Oct 22, 2024
1 parent 0cc40f6 commit a3d37f3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 17 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion build-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,18 @@ cross_run() {
fi
dockerfile="./docker/builder/Dockerfile.cross"
tag=${BUILDER_TAG:-"evebox/builder:cross"}
if test -t; then
it="-it"
else
it=""
fi
${ECHO} docker build \
--build-arg REAL_UID="$(id -u)" \
--build-arg REAL_GID="$(id -g)" \
--cache-from ${tag} \
-t ${tag} \
-f ${dockerfile} .
${ECHO} docker run --rm --privileged \
${ECHO} docker run --rm ${it} --privileged \
-v "$(pwd):/src:z" \
-v /var/run/docker.sock:/var/run/docker.sock:z \
-w /src \
Expand Down

0 comments on commit a3d37f3

Please sign in to comment.