mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
ls: if acl are used, show the + in the perms (#5816)
* ls: if acl are used, show the + in the perms Tested by tests/mkdir/p-acl.sh * CICD.yml: fix small formatting issue --------- Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
This commit is contained in:
parent
dc41ed2aeb
commit
e01d5f75f7
5 changed files with 82 additions and 6 deletions
20
.github/workflows/CICD.yml
vendored
20
.github/workflows/CICD.yml
vendored
|
@ -612,11 +612,23 @@ jobs:
|
|||
run: |
|
||||
## Install/setup prerequisites
|
||||
case '${{ matrix.job.target }}' in
|
||||
arm-unknown-linux-gnueabihf) sudo apt-get -y update ; sudo apt-get -y install gcc-arm-linux-gnueabihf ;;
|
||||
aarch64-unknown-linux-*) sudo apt-get -y update ; sudo apt-get -y install gcc-aarch64-linux-gnu ;;
|
||||
*-redox*) sudo apt-get -y update ; sudo apt-get -y install fuse3 libfuse-dev ;;
|
||||
arm-unknown-linux-gnueabihf)
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install gcc-arm-linux-gnueabihf
|
||||
;;
|
||||
aarch64-unknown-linux-*)
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install gcc-aarch64-linux-gnu
|
||||
;;
|
||||
*-redox*)
|
||||
sudo apt-get -y update
|
||||
sudo apt-get -y install fuse3 libfuse-dev
|
||||
;;
|
||||
# Update binutils if MinGW due to https://github.com/rust-lang/rust/issues/112368
|
||||
x86_64-pc-windows-gnu) C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm ; echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH ;;
|
||||
x86_64-pc-windows-gnu)
|
||||
C:/msys64/usr/bin/pacman.exe -Syu --needed mingw-w64-x86_64-gcc --noconfirm
|
||||
echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
|
||||
;;
|
||||
esac
|
||||
case '${{ matrix.job.os }}' in
|
||||
macos-latest) brew install coreutils ;; # needed for testing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue