Skip to content

Commit b540f0e

Browse files
author
codethinki
committed
fixing the dot spamming but actually looking kinda good so far
1 parent a24fbdf commit b540f0e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/install_core_deps/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
run: |
3030
choco install --no-progress wget -y
3131
cd $HOME
32-
wget --quiet https://arrayfire.gateway.scarf.sh/windows/3.10.0/ArrayFire.exe -O ArrayFire.exe
32+
wget -nv https://arrayfire.gateway.scarf.sh/windows/3.10.0/ArrayFire.exe -O ArrayFire.exe
3333
7z.exe x ArrayFire.exe -o"C:\tools\ArrayFire" -y
3434
rm ArrayFire.exe
3535
shell: bash -el {0}

ci/docker/linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN pacman -Syu --noconfirm && \
2020
ENV VCPKG_ROOT=/opt/vcpkg
2121

2222
# Install ArrayFire from script
23-
RUN wget -q --show-progress https://arrayfire.s3.amazonaws.com/3.10.0/ArrayFire-v3.10.0_Linux_x86_64.sh -O af_installer.sh && \
23+
RUN wget -nv https://arrayfire.s3.amazonaws.com/3.10.0/ArrayFire-v3.10.0_Linux_x86_64.sh -O af_installer.sh && \
2424
chmod +x af_installer.sh && \
2525
./af_installer.sh --include-subdir --prefix=/opt --skip-license --yes && \
2626
rm af_installer.sh

0 commit comments

Comments
 (0)