mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
13 lines
341 B
Bash
Executable File
13 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
# Handle to many files on osx
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ] || [ `uname` == "Darwin" ]; then
|
|
ulimit -n 4096
|
|
fi
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ] || [ `uname` == "Darwin" ]; then
|
|
export SQLTOOLSSERVICE_PACKAGE_OSNAME=osx-x64
|
|
else
|
|
export SQLTOOLSSERVICE_PACKAGE_OSNAME=linux-x64
|
|
fi
|
|
bash ./scripts/cake-bootstrap.sh "$@"
|