lint: Use consistent shebangs

This commit is contained in:
Jack Grigg 2020-10-28 13:08:56 +00:00
parent 337e528d33
commit 7c4b19fa4d
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -exo pipefail
# Debian 9
docker build . -f Dockerfile-build-python.apt --build-arg FROMBASEOS=debian --build-arg FROMBASEOS_BUILD_TAG=9 -t electriccoinco/zcashd-build-debian9

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eo pipefail

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -u

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
## Usage:
## ./zcutil/build-debian-package.sh

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Warning: This deletes tags on "origin", so point that at the right target!
#

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
import os
import re

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import re, os, os.path