Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: elixir
elixir: 1.7.4
os: linux
dist: trusty
dist: xenial

otp_release:
- 22.0.5
Expand All @@ -18,7 +18,6 @@ addons:
- curl
- libcurl4-openssl-dev
- libicu-dev
- libmozjs185-dev
- pkg-config
- python3.6
- python3.6-dev
Expand Down Expand Up @@ -50,6 +49,9 @@ env:

# Then comment this section out
before_script:
- echo "deb http://cz.archive.ubuntu.com/ubuntu cosmic main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get -qq update
- sudo apt-get -y install libmozjs-60-dev
- kerl list installations
- rm -rf /tmp/couchjslogs
- mkdir -p /tmp/couchjslogs
Expand Down
4 changes: 2 additions & 2 deletions share/server/dreyfus.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ var Dreyfus = (function() {
indexDoc: function(doc) {
Couch.recursivelySeal(doc);
var buf = [];
for each (fun in State.funs) {
for (fun in State.funs) {
index_results = [];
try {
fun(doc);
State.funs[fun](doc);
buf.push(index_results);
} catch (err) {
handleIndexError(err, doc);
Expand Down
1 change: 1 addition & 0 deletions share/server/escodegen.js

Large diffs are not rendered by default.

Loading