Merge pull request #203565 from l0b0/fix/bashism-shebangs-maintainers-scripts

maintainers/scripts: Use Bash shebang line for files with bashisms
This commit is contained in:
figsoda 2022-11-29 11:39:03 -05:00 committed by GitHub
commit 352c671335
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
# Download patches from debian project
# Usage $0 debian-patches.txt debian-patches.nix

View file

@ -1,4 +1,4 @@
#! /bin/sh
#!/usr/bin/env bash
if [[ -z "$VERBOSE" ]]; then
echo "You may set VERBOSE=1 to see debug output or to any other non-empty string to make this script completely silent"

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -e
: ${NIXOS_CHANNELS:=https://nixos.org/channels/}