Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fixes for postCreateCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed Jun 11, 2019
1 parent 3133d72 commit 6de9d75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"python.linting.enabled": true
},
// Install contents of environment.yml if present
"postCreateCommand": "if [ -f environment.yml ]; conda env update base -f environment.yml; fi"
"postCreateCommand": "if [ -f environment.yml ]; then conda env update base -f environment.yml; fi"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"python.linting.enabled": true
},
// Install contents of environment.yml if present
"postCreateCommand": "if [ -f environment.yml ]; conda env update base -f environment.yml; fi"
"postCreateCommand": "if [ -f environment.yml ]; then conda env update base -f environment.yml; fi"
}

0 comments on commit 6de9d75

Please sign in to comment.