mirror of
https://github.com/WhatsApp/erlang-language-platform.git
synced 2025-12-23 12:26:48 +00:00
Summary: The license header we use for our Apache + MIT dual licensed projects can be made more explicit. This has not actual implications on licensing, but does clarify what it means for a project to be dual licensed. Reviewed By: bigfootjon Differential Revision: D77550482 fbshipit-source-id: 24267af9a7715bfc604b5840ce29776705428516
16 lines
579 B
Bash
Executable file
16 lines
579 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# This source code is dual-licensed under either the MIT license found in the
|
|
# LICENSE-MIT file in the root directory of this source tree or the Apache
|
|
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
|
# of this source tree. You may select, at your option, one of the
|
|
# above-listed licenses.
|
|
|
|
CODE_TESTS_PATH="$(pwd)/client/out/test"
|
|
export CODE_TESTS_PATH
|
|
|
|
CODE_TESTS_WORKSPACE="$(pwd)/client/testFixture"
|
|
export CODE_TESTS_WORKSPACE
|
|
|
|
node "$(pwd)/client/out/test/runTest"
|