Skip to content

Commit

Permalink
Merge pull request #259 from AshKetch-um/issue258
Browse files Browse the repository at this point in the history
Issue #258: Replace usage of explicit '#!/bin/bash' with more environmentally friendly '#!/usr/bin/env bash'
  • Loading branch information
s3rvac authored Mar 30, 2018
2 parents c6a6cca + 63c1969 commit 79f225c
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion scripts/retdec-archive-decompiler.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Runs the decompilation script with the given arguments over all files in the
# given static library.
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-config.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Decompiler's configuration. This file should be included in every decompilation script.
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-decompiler.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# The script decompiles the given file into the selected target high-level language.
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-fileinfo.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# A wrapper for fileinfo that:
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-signature-from-library-creator.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

SCRIPT_DIR="$(dirname "$(readlink -e "$0")")"

Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-tests-runner.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Runs all the installed unit tests.
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-unpacker.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# The script tries to unpack the given executable file by using any
# of the supported unpackers, which are at present:
Expand Down
2 changes: 1 addition & 1 deletion scripts/retdec-utils.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Compilation and decompilation utility functions.
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/type_extractor/gen_cstdlib_and_linux_jsons.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Generates 1 JSON for C standard library and 1 for other C header files in
# /usr/include.
Expand Down
2 changes: 1 addition & 1 deletion scripts/type_extractor/gen_windows_and_windrivers_jsons.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Generates JSON files from includes in Windows SDK and Windows Drivers Kit.
#
Expand Down

0 comments on commit 79f225c

Please sign in to comment.