mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Fix precommit scripts on OSX
JerryScript-DCO-1.0-Signed-off-by: François Baldassari francois@pebble.com
This commit is contained in:
parent
e1f20ad474
commit
b59af40e91
@ -15,7 +15,13 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(nproc)}
|
||||
if [[ "$OSTYPE" == "linux"* ]]; then
|
||||
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(nproc)}
|
||||
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(sysctl -n hw.ncpu)}
|
||||
else
|
||||
CPPCHECK_JOBS=${CPPCHECK_JOBS:=1}
|
||||
fi
|
||||
|
||||
JERRY_CORE_DIRS=`find jerry-core -type d`
|
||||
JERRY_LIBC_DIRS=`find jerry-libc -type d`
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user