Add copyright headers in scripts

Summary: These need the header applied

Reviewed By: zeyadsalloum

Differential Revision: D14383785

fbshipit-source-id: 37de4864a47069e6ff92adc44c8c4339af013268
This commit is contained in:
Lawrence Lomax 2019-03-08 04:07:54 -08:00 коммит произвёл Facebook Github Bot
Родитель 5a8eaa6afe
Коммит 41d93dabe9
8 изменённых файлов: 50 добавлений и 0 удалений

Просмотреть файл

@ -1,4 +1,11 @@
#!/bin/bash
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
pushd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null
SCRIPT_PATH=$(pwd)
SCRIPT_PATH+=/backboard_indigo.d

Просмотреть файл

@ -1,4 +1,11 @@
#!/bin/bash
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
pushd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null
SCRIPT_PATH=$(pwd)
SCRIPT_PATH+=/simulator_indigo.d

Просмотреть файл

@ -1,4 +1,10 @@
/* vim: set tabstop=2 shiftwidth=2 filetype=dtrace: */
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* Tracing of Indigo and mach Messages in Simulator.app
* Imports come from the Reversed C-Structs
* #import <mach/mach.h> cannot be used as the dtrace preprocessor barfs on some macros.

Просмотреть файл

@ -1,4 +1,10 @@
#!/bin/bash
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
set -ex

Просмотреть файл

@ -1,4 +1,10 @@
#!/bin/bash
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
set -e
set -o pipefail

Просмотреть файл

@ -1,4 +1,10 @@
#!/usr/bin/env xcrun swift -F /usr/local/Frameworks
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import Metal

Просмотреть файл

@ -1,4 +1,10 @@
#!/usr/bin/env python3
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
from typing import Any, List, Dict, Tuple
from util import (

Просмотреть файл

@ -1,4 +1,10 @@
#!/usr/bin/env python3
#
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#
from typing import List, Any, Optional, Dict
import asyncio