From 6b43cbf4c8f2c76521c751760dd90846971932c5 Mon Sep 17 00:00:00 2001 From: tanujdhir <tanujdhir@google.com> Date: Thu, 11 Jul 2019 02:57:32 -0700 Subject: [PATCH] Fix script shebangs. PiperOrigin-RevId: 257574467 --- tools/testing/cc/aws_kms_aead_test.sh | 2 +- tools/testing/cc/gcp_kms_aead_test.sh | 2 +- tools/testing/cross_language/aead_test.sh | 2 +- tools/testing/cross_language/deterministic_aead_test.sh | 2 +- tools/testing/cross_language/hybrid_encryption_test.sh | 2 +- tools/testing/cross_language/keyset_reader_writer_test.sh | 2 +- tools/testing/cross_language/mac_test.sh | 2 +- tools/testing/cross_language/signature_test.sh | 2 +- tools/testing/cross_language/streaming_aead_test.sh | 2 +- tools/testing/cross_language/test_util.sh | 2 +- tools/testing/cross_language/version_test.sh | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tools/testing/cc/aws_kms_aead_test.sh b/tools/testing/cc/aws_kms_aead_test.sh index 819aaa0db..9f54b87b3 100755 --- a/tools/testing/cc/aws_kms_aead_test.sh +++ b/tools/testing/cc/aws_kms_aead_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" AWS_KMS_AEAD_CLI="$ROOT_DIR/tools/testing/cc/aws_kms_aead_cli" diff --git a/tools/testing/cc/gcp_kms_aead_test.sh b/tools/testing/cc/gcp_kms_aead_test.sh index ad4373e52..29fa7937f 100755 --- a/tools/testing/cc/gcp_kms_aead_test.sh +++ b/tools/testing/cc/gcp_kms_aead_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" GCP_KMS_AEAD_CLI="$ROOT_DIR/tools/testing/cc/gcp_kms_aead_cli" diff --git a/tools/testing/cross_language/aead_test.sh b/tools/testing/cross_language/aead_test.sh index 6f1744248..c13970cdc 100755 --- a/tools/testing/cross_language/aead_test.sh +++ b/tools/testing/cross_language/aead_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_AEAD_CLI="$ROOT_DIR/tools/testing/cc/aead_cli_cc" diff --git a/tools/testing/cross_language/deterministic_aead_test.sh b/tools/testing/cross_language/deterministic_aead_test.sh index c71fc6f3a..5c9e90387 100755 --- a/tools/testing/cross_language/deterministic_aead_test.sh +++ b/tools/testing/cross_language/deterministic_aead_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_DAEAD_CLI="$ROOT_DIR/tools/testing/cc/deterministic_aead_cli_cc" diff --git a/tools/testing/cross_language/hybrid_encryption_test.sh b/tools/testing/cross_language/hybrid_encryption_test.sh index 9dbcbe3a7..404cc4964 100755 --- a/tools/testing/cross_language/hybrid_encryption_test.sh +++ b/tools/testing/cross_language/hybrid_encryption_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_ENCRYPT_CLI="$ROOT_DIR/tools/testing/cc/hybrid_encrypt_cli_cc" diff --git a/tools/testing/cross_language/keyset_reader_writer_test.sh b/tools/testing/cross_language/keyset_reader_writer_test.sh index cd8d8ee47..431d0f654 100755 --- a/tools/testing/cross_language/keyset_reader_writer_test.sh +++ b/tools/testing/cross_language/keyset_reader_writer_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_KEYSET_RW_CLI="$ROOT_DIR/tools/testing/cc/keyset_reader_writer_cli" diff --git a/tools/testing/cross_language/mac_test.sh b/tools/testing/cross_language/mac_test.sh index 784e9b783..dc6a98922 100755 --- a/tools/testing/cross_language/mac_test.sh +++ b/tools/testing/cross_language/mac_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_MAC_CLI="$ROOT_DIR/tools/testing/cc/mac_cli_cc" diff --git a/tools/testing/cross_language/signature_test.sh b/tools/testing/cross_language/signature_test.sh index 42f4a4c7c..0e0f22730 100755 --- a/tools/testing/cross_language/signature_test.sh +++ b/tools/testing/cross_language/signature_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_SIGN_CLI="$ROOT_DIR/tools/testing/cc/public_key_sign_cli_cc" diff --git a/tools/testing/cross_language/streaming_aead_test.sh b/tools/testing/cross_language/streaming_aead_test.sh index 53e5b5a51..cb160a246 100755 --- a/tools/testing/cross_language/streaming_aead_test.sh +++ b/tools/testing/cross_language/streaming_aead_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" CC_AEAD_CLI="$ROOT_DIR/tools/testing/cc/streaming_aead_cli_cc" diff --git a/tools/testing/cross_language/test_util.sh b/tools/testing/cross_language/test_util.sh index 5cee54122..45b96ea60 100755 --- a/tools/testing/cross_language/test_util.sh +++ b/tools/testing/cross_language/test_util.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" TINKEY_CLI="$ROOT_DIR/tools/tinkey/tinkey" diff --git a/tools/testing/cross_language/version_test.sh b/tools/testing/cross_language/version_test.sh index 6ecddeb32..746882e47 100755 --- a/tools/testing/cross_language/version_test.sh +++ b/tools/testing/cross_language/version_test.sh @@ -1,3 +1,4 @@ +#!/bin/bash # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at @@ -11,7 +12,6 @@ # limitations under the License. ################################################################################ -#!/bin/bash ROOT_DIR="$TEST_SRCDIR/tink" VERSION_FILE="$ROOT_DIR/tink_version.bzl" -- GitLab