Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 26a7090

Browse files
committed
Reduce logs
1 parent 284473c commit 26a7090

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.ci/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export PATH="$IJ_PATH:$PATH"
1818
mkdir -p $IJ_PATH/
1919
cd $HOME/
2020
wget --no-check-certificate https://downloads.imagej.net/fiji/latest/fiji-linux64.zip
21-
unzip fiji-linux64.zip
21+
unzip fiji-linux64.zip > /dev/null 2>&1
2222

2323

2424
# Install the package

.ci/test.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ set -ex
55
# Install python
66

77
cd $HOME/
8-
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
9-
bash miniconda.sh -b -p "$HOME/conda"
8+
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh > /dev/null 2>&1
9+
bash miniconda.sh -b -p "$HOME/conda" > /dev/null 2>&1
1010
export PATH="$HOME/conda/bin:$PATH"
1111

1212
conda config --set always_yes yes --set changeps1 no
1313
conda config --add channels conda-forge
14-
conda update --yes conda
15-
conda update --yes --all
14+
conda update --yes conda > /dev/null 2>&1
15+
conda update --yes --all > /dev/null 2>&1
1616
conda info -a
1717

18-
conda create --yes -n scijava python jupyter nbconvert
18+
conda create --yes -n scijava python jupyter nbconvert > /dev/null 2>&1
1919

2020
source activate scijava
2121

0 commit comments

Comments
 (0)