1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

dist/tools: Use /usr/bin/env bash for bash scripts

This commit is contained in:
Koen Zandberg 2020-10-30 13:12:35 +01:00
parent 96cad82910
commit c5b2ded055
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B
8 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
MAKE=${MAKE:-make}

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright 2017 Kaspar Schleiser <kaspar@schleiser.de>
#

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DLCACHE_DIR=${DLCACHE_DIR:-~/.dlcache}

View File

@ -1,4 +1,6 @@
#!/bin/bash -e
#!/usr/bin/env bash
set -e
[ "$GIT_CACHE_VERBOSE" != "1" ] && Q=-q

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Copyright (C) 2019 Benjamin Valentin <benjamin.valentin@ml-pa.com>
#

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright 2017 Kaspar Schleiser <kaspar@schleiser.de>
# Copyright 2014 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
RIOTBASE=$(git rev-parse --show-toplevel)
CURDIR=$(cd "$(dirname "$0")" && pwd)
UNCRUSTIFY_CFG="$RIOTBASE"/uncrustify-riot.cfg

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Copyright 2018 Jose Ignacio Alamos <jose.alamos@haw-hamburg.de>
#