Bash location is different from /bin on most non-Linux UNIX systems.
Rely on env(1) to find the shell in the user's $PATH.
This commit is contained in:
Romain Tartière 2018-08-22 14:59:19 +02:00
Родитель 8774031d5e
Коммит b2834b58bf
11 изменённых файлов: 13 добавлений и 12 удалений

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script is called from lib/octocatalog-diff/catalog-util/git.rb and is used to
# archive and extract a certain branch of a git repository into a target directory.

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
RUBOCOP_YML="${DIR}/.rubocop.yml"

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script is being invoked via <root dir>/.git/hooks, hence the
# base directory is up two levels, not just one.

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script exists to make it easier to test alternate branches of octocatalog-diff.
# It is intended as a one-for-one replacement of `octocatalog-diff` as installed by the gem.

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"

2
scripts/env/env.sh поставляемый
Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script echoes back the environment. This is used for spec testing
# and possible debugging.

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This script is called from lib/octocatalog-diff/catalog-util/git.rb and is used to
# archive and extract a certain branch of a git repository into a target directory.

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Script to run Puppet. The default implementation here is simply to pass
# through the command line arguments (which are likely to be numerous when

Просмотреть файл

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# For test purposes only, this script would ordinarily run a git checkout, but here
# it's going to generate a directory structure by copying some other fixture.

Просмотреть файл

@ -71,10 +71,11 @@ describe OctocatalogDiff::Bootstrap do
end
it 'should execute bootstrap script with PATH matching environment' do
ENV['PATH'] = @d + '/adslfk'
old_path = ENV['PATH']
ENV['PATH'] = "#{old_path}:#{@d + '/adslfk'}"
result = b(path: @d, bootstrap_script: 'script/bootstrap.sh', bootstrap_args: 'PATH')
expect(result[:status_code]).to eq(32)
expect(result[:output].strip).to eq(@d + '/adslfk')
expect(result[:output].strip).to eq("#{old_path}:#{@d + '/adslfk'}")
end
it 'should execute bootstrap script with BASEDIR matching argument' do

Просмотреть файл

@ -183,7 +183,7 @@ module OctocatalogDiff
temp_repo_dir = Dir.mktmpdir
Dir.mkdir(File.join(temp_repo_dir, 'script'))
File.open(File.join(temp_repo_dir, 'script', filename), 'w') do |f|
f.write "#!/bin/bash\n"
f.write "#!/usr/bin/env bash\n"
f.write "var=\"${@: -1}\"\n"
f.write "if [ \"$var\" = \"\" ]; then exit 31; fi\n"
f.write "eval answer=\\$$var\n"