Skip to content

Commit

Permalink
maybe fix aarch64 test
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Jul 12, 2023
1 parent df3d4c9 commit d698f19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion features/src/utils/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "devcontainer-utils",
"id": "utils",
"version": "23.8.6",
"version": "23.8.7",
"description": "A feature to install RAPIDS devcontainer utility scripts",
"containerEnv": {
"BASH_ENV": "/etc/bash.bash_env"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/env bash

find ~/ -maxdepth 1 -exec bash -c '\
[ $(stat --format "%U:%G" "{}") != "$(id -u):$(id -g)" ] \
&& sudo chown -R $(id -u):$(id -g) {}' \;
find ~/ -maxdepth 1 -exec bash -c "\
[ $(stat --format '%U:%G' '{}') != $(id -u):$(id -g) ] \
&& sudo chown -R $(id -u):$(id -g) {}" \;

. devcontainer-utils-init-git;
. devcontainer-utils-vault-s3-init;

0 comments on commit d698f19

Please sign in to comment.