Merge pull request #12242 from smlng/tools_shebang

tools: fix shebang in scripts
This commit is contained in:
Alexandre Abadie 2019-09-16 17:23:50 +02:00 committed by GitHub
commit 0ae86d7775
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/bash
#!/usr/bin/env bash
#
# usage: has_minimal_version.sh <version> <minimal_version> [toolname]
# Checks that version >= minimal_version

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Unified OpenOCD script for RIOT
#

2
dist/tools/packer/setup.sh vendored Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/bin/bash -eux
#!/usr/bin/env bash -eux
# inspired by https://github.com/boxcutter/ubuntu