Skip to content

Commit

Permalink
Fix comparison syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Dec 9, 2023
1 parent 0eb2507 commit 2f5b5f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .azure/templates/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ steps:
displayName: Create Anaconda environment
- bash: |
if [[ ${{ parameters.conda_packages }} != "" ]]; then
if [[ "${{ parameters.conda_packages }}" != "" ]]; then
source activate myEnvironment
conda install --channel conda-forge ${{ parameters.conda_packages }}
displayName: Install Anaconda packages

0 comments on commit 2f5b5f8

Please sign in to comment.