diff options
author | rain <rainbeam@riseup.net> | 2016-08-17 02:45:24 +0800 |
---|---|---|
committer | rain <rainbeam@riseup.net> | 2016-08-17 02:45:35 +0800 |
commit | b998621cf5f01d721bc5d0dfc71919419531aec1 (patch) | |
tree | 5a6b7e1f96f07604cad082a632ecec1ef02e3ecf /scripts | |
parent | 3577e8feb24c5f54c9901031e87e87f18b162ddf (diff) | |
download | dexon-solidity-b998621cf5f01d721bc5d0dfc71919419531aec1.tar.gz dexon-solidity-b998621cf5f01d721bc5d0dfc71919419531aec1.tar.zst dexon-solidity-b998621cf5f01d721bc5d0dfc71919419531aec1.zip |
replace bash with sh
sh is portable across POSIX systems
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 7af9475d..7458fa8b 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -1,7 +1,7 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh #------------------------------------------------------------------------------ -# Bash script for installing pre-requisite packages for solidity on a +# Shell script for installing pre-requisite packages for solidity on a # variety of Linux and other UNIX-derived platforms. # # This is an "infrastucture-as-code" alternative to the manual build |