Skip to content

Commit

Permalink
Fix remaining references to "scripts" directory
Browse files Browse the repository at this point in the history
  • Loading branch information
weiss committed Aug 1, 2023
1 parent 8daeb5f commit d700944
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/make-containers
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ buildah_push_manifest()
docker://"$registry/$repo_name:$tag"
}

if ! [ -e 'rebar.config' ] || ! [ -e "scripts/$myself" ]
if ! [ -e 'rebar.config' ] || ! [ -e "tools/$myself" ]
then
echo >&2 "Please call this script from the repository's root directory."
exit 2
Expand Down
2 changes: 1 addition & 1 deletion tools/make-installers
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ usage()
exit 2
}

if ! [ -e 'rebar.config' ] || ! [ -e "scripts/$myself" ]
if ! [ -e 'rebar.config' ] || ! [ -e "tools/$myself" ]
then
echo >&2 "Please call this script from the repository's root directory."
exit 2
Expand Down
2 changes: 1 addition & 1 deletion tools/make-packages
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ do
done
shift $((OPTIND - 1))

if ! [ -e 'rebar.config' ] || ! [ -e "scripts/$myself" ]
if ! [ -e 'rebar.config' ] || ! [ -e "tools/$myself" ]
then
echo >&2 "Please call this script from the repository's root directory."
exit 2
Expand Down
2 changes: 1 addition & 1 deletion tools/make-release
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if ! git rev-parse >'/dev/null' 2>&1
then
echo >&2 'This script can only be executed within the Git repository.'
exit 2
elif ! [ -e 'rebar.config' ] || ! [ -e "scripts/$myself" ]
elif ! [ -e 'rebar.config' ] || ! [ -e "tools/$myself" ]
then
echo >&2 "Please call this script from the repository's root directory."
exit 2
Expand Down
2 changes: 1 addition & 1 deletion tools/make-source
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if ! git rev-parse >'/dev/null' 2>&1
then
echo >&2 'This script can only be executed within the Git repository.'
exit 2
elif ! [ -e 'rebar.config' ] || ! [ -e "scripts/$myself" ]
elif ! [ -e 'rebar.config' ] || ! [ -e "tools/$myself" ]
then
echo >&2 "Please call this script from the repository's root directory."
exit 2
Expand Down

0 comments on commit d700944

Please sign in to comment.