Skip to content

Commit 8f71ace

Browse files
committed
Fix order of arguments
1 parent 7d9c062 commit 8f71ace

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ commands:
9696
conda env create -n esmvaltool -f environment.yml --verbose
9797
conda activate esmvaltool
9898
mamba list >> /logs/conda.txt
99-
pip --no-deps install << parameters.flags >> ".[<<parameters.extra>>]"> /logs/install.txt 2>&1
99+
pip install --no-deps << parameters.flags >> ".[<<parameters.extra>>]"> /logs/install.txt 2>&1
100100
if [[ "<<parameters.flags>>" != *'--editable'* ]]
101101
then
102102
rm -r esmvaltool
@@ -136,7 +136,7 @@ jobs:
136136
. /opt/conda/etc/profile.d/conda.sh
137137
conda activate esmvaltool
138138
mkdir /logs
139-
pip --no-deps install .[test] > /logs/install.txt 2>&1
139+
pip install --no-deps .[test] > /logs/install.txt 2>&1
140140
- run:
141141
name: Check Python code style and mistakes
142142
command: |

0 commit comments

Comments
 (0)