Use proper shebang for all bash scripts: #!/usr/bin/env bash

This commit is contained in:
Emil Ernerfeldt 2022-04-07 17:36:37 +02:00
parent ed07d0a1ad
commit c6b97756e9
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd "$script_path"

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This scripts runs various CI-like checks in a convenient way.
set -eux

View file

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

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -eu
# Starts a local web-server that serves the contents of the `doc/` folder,