maintainers/scripts: Use Bash shebang line for files with bashisms

This commit is contained in:
Victor Engmark 2022-11-29 19:52:21 +13:00
parent 585038671c
commit ea5fcc0204
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/}