Skip to content

Commit

Permalink
limit deployment uploads for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
David Driscoll authored and David Driscoll committed Mar 25, 2016
1 parent cf52728 commit 5688b25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ deploy:
api_key:
secure: N9hansErZKHl7G5Ed/hcBgwcvLuRjB7YAskAvSAYB+luacV6rSK7Vlm/4NyjaZCwWv5wOdBphle2S4yZLRDTdMwLrdQWwWYeZI60kE22c1amKJaf6j5ai2u/P3bt55klQ2yO2U/LacwHVoRtJlVdwSAXuDQ3zMd88VbBModQyxE=
file_glob: true
file: artifacts/package/*.tar.gz
file: artifacts/package/*${TRAVIS_OS_NAME}*.tar.gz
skip_cleanup: true
on:
repo: OmniSharp/omnisharp-roslyn
Expand Down
5 changes: 4 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/bin/bash

# Handle to many files on osx
if [ "$TRAVIS_OS_NAME" == "osx" ] || [uname== "Darwin" ]; then
ulimit -n 4096
fi
bash ./scripts/cake-bootstrap.sh "$@"

0 comments on commit 5688b25

Please sign in to comment.