diff options
author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2021-01-23 05:44:05 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 17:44:05 +0100 |
commit | 0bf5669ba3a7bcdcf7db913c25e56a9d32e180b1 (patch) | |
tree | 441cd5b4a06c14026e78ed8f3f974fa5b23f255b /Meta | |
parent | 2fe6a313c2a3824da6cf5c5589bfb9ba461086fb (diff) | |
download | serenity-0bf5669ba3a7bcdcf7db913c25e56a9d32e180b1.zip |
Meta: Get building on NixOS (#5005)
Diffstat (limited to 'Meta')
-rwxr-xr-x | Meta/check-ak-test-files.sh | 2 | ||||
-rwxr-xr-x | Meta/check-debug-flags.sh | 2 | ||||
-rwxr-xr-x | Meta/check-style.sh | 2 | ||||
-rwxr-xr-x | Meta/generate-embedded-resource-assembly.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-ci.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-clang-format.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-executable-resources.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-ipc-ids.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-missing-resources.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-prettier.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-python.sh | 2 | ||||
-rwxr-xr-x | Meta/lint-shell-scripts.sh | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/Meta/check-ak-test-files.sh b/Meta/check-ak-test-files.sh index 3a657a76bb..b9fab96559 100755 --- a/Meta/check-ak-test-files.sh +++ b/Meta/check-ak-test-files.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail diff --git a/Meta/check-debug-flags.sh b/Meta/check-debug-flags.sh index 6fb4daeb47..862b417604 100755 --- a/Meta/check-debug-flags.sh +++ b/Meta/check-debug-flags.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail diff --git a/Meta/check-style.sh b/Meta/check-style.sh index 4bbe5ca680..b0d1310aeb 100755 --- a/Meta/check-style.sh +++ b/Meta/check-style.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P) cd "$script_path/.." || exit 1 diff --git a/Meta/generate-embedded-resource-assembly.sh b/Meta/generate-embedded-resource-assembly.sh index b9d64648cf..bb1d619753 100755 --- a/Meta/generate-embedded-resource-assembly.sh +++ b/Meta/generate-embedded-resource-assembly.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/Meta/lint-ci.sh b/Meta/lint-ci.sh index 69d96e406a..2467757df3 100755 --- a/Meta/lint-ci.sh +++ b/Meta/lint-ci.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/Meta/lint-clang-format.sh b/Meta/lint-clang-format.sh index 0d961252f8..1ab694d81c 100755 --- a/Meta/lint-clang-format.sh +++ b/Meta/lint-clang-format.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/Meta/lint-executable-resources.sh b/Meta/lint-executable-resources.sh index 669bbd3487..ac63461dc5 100755 --- a/Meta/lint-executable-resources.sh +++ b/Meta/lint-executable-resources.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail diff --git a/Meta/lint-ipc-ids.sh b/Meta/lint-ipc-ids.sh index 9973b6efff..4a7004444d 100755 --- a/Meta/lint-ipc-ids.sh +++ b/Meta/lint-ipc-ids.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail diff --git a/Meta/lint-missing-resources.sh b/Meta/lint-missing-resources.sh index bac8e6b8ac..1a1b6f6a63 100755 --- a/Meta/lint-missing-resources.sh +++ b/Meta/lint-missing-resources.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail diff --git a/Meta/lint-prettier.sh b/Meta/lint-prettier.sh index 5867ca3078..7a6701e8ee 100755 --- a/Meta/lint-prettier.sh +++ b/Meta/lint-prettier.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/Meta/lint-python.sh b/Meta/lint-python.sh index 494c2a7bc2..40eb812653 100755 --- a/Meta/lint-python.sh +++ b/Meta/lint-python.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e diff --git a/Meta/lint-shell-scripts.sh b/Meta/lint-shell-scripts.sh index da37d35d6d..aba9b06b2e 100755 --- a/Meta/lint-shell-scripts.sh +++ b/Meta/lint-shell-scripts.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -eo pipefail |