Browse Source

Tidying: Unify the shebang call in all convert scripts

Previously some scripts were calling env and bash, some were only calling bash.

This commit unifies the scripts to all use `#! /usr/bin/env bash`

Changelog: None

Signed-off-by: Ole Petter <ole.orhagen@northern.tech>
2.0.x
Ole Petter 5 years ago
parent
commit
d7808f24f4
No known key found for this signature in database GPG Key ID: A7100375167A7B21
  1. 2
      mender-convert
  2. 2
      mender-convert-extract
  3. 2
      mender-convert-modify
  4. 2
      mender-convert-package

2
mender-convert

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#! /usr/bin/env bash
#
# Copyright 2019 Northern.tech AS
#

2
mender-convert-extract

@ -1,4 +1,4 @@
#!/bin/bash
#! /usr/bin/env bash
#
# Copyright 2019 Northern.tech AS
#

2
mender-convert-modify

@ -1,4 +1,4 @@
#!/bin/bash
#! /usr/bin/env bash
#
# Copyright 2019 Northern.tech AS
#

2
mender-convert-package

@ -1,4 +1,4 @@
#!/bin/bash
#! /usr/bin/env bash
#
# Copyright 2019 Northern.tech AS
#

Loading…
Cancel
Save