Skip to content

Commit

Permalink
Shellcheck warning fixes to create attribution doc
Browse files Browse the repository at this point in the history
Signed-off-by: Judy Ng <[email protected]>
  • Loading branch information
judysng committed Jan 3, 2024
1 parent 5a7aef3 commit 1830acb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions util/create-attribution-doc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function create_attribution_doc() {

# install pcluster via source

pip3 install -e $(dirname $ATTR_SCRIPT_DIR )/cli
pip3 install -e "$(dirname $ATTR_SCRIPT_DIR )/cli"
#pip3 install -r requirements.txt

final_license_file=$(dirname $ATTR_SCRIPT_DIR )/THIRD-PARTY-LICENSES.txt
Expand Down Expand Up @@ -103,7 +103,8 @@ _error_exit() {
}

_help() {
local -- _cmd=$(basename "$0")
local -- _cmd
_cmd=$(basename "$0")

cat <<EOF
This script will create the THIRD_PARTY_LICENSE.txt file assuming you have already installed Pyenv
Expand Down Expand Up @@ -137,4 +138,4 @@ function main() {
create_attribution_doc
}

main "$@"
main "$@"

0 comments on commit 1830acb

Please sign in to comment.