Skip to content

Commit 89ba2f4

Browse files
committed
Update licenses
1 parent bfba688 commit 89ba2f4

File tree

502 files changed

+941
-620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

502 files changed

+941
-620
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!make
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/amend-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/amend-images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/build-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/build-images.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@ host_backup=$3
2828

2929
for image in "${all_images[@]}"; do
3030
is_multi_arch="false"
31-
if in_array $image "multi_arch_images"; then
31+
if [[ " ${multi_arch_images[*]} " =~ " $image " ]]; then
3232
is_multi_arch="true"
3333
$ROOT/build/build-image.sh $host_primary $host_backup $image $is_multi_arch $arch
3434
elif [ "$arch" = "amd64" ]; then

build/cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/generate_ami_mapping.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2021 Cortex Labs, Inc.
2+
Copyright 2022 Cortex Labs, Inc.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

build/images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/lint-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

build/lint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright 2021 Cortex Labs, Inc.
3+
# Copyright 2022 Cortex Labs, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -105,7 +105,7 @@ output=$(cd "$ROOT" && find . -type f \
105105
! -name "*.bin" \
106106
! -name "Dockerfile" \
107107
! -name "PROJECT" \
108-
-exec grep -L "Copyright 2021 Cortex Labs, Inc" {} \;)
108+
-exec grep -L "Copyright 2022 Cortex Labs, Inc" {} \;)
109109
if [[ $output ]]; then
110110
echo "File(s) are missing Cortex license:"
111111
echo "$output"

0 commit comments

Comments
 (0)