Skip to content

Commit

Permalink
Fix missing quote in bin/lein-pkg.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Jul 8, 2020
1 parent 0e8839e commit 7677dab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lein-pkg
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if [ -r .lein-fast-trampoline ]; then
fi

if [ "$LEIN_FAST_TRAMPOLINE" != "" ] && [ -r project.clj ]; then
INPUTS="$* $(cat project.clj) $LEIN_VERSION $(test -f "$LEIN_HOME/profiles.clj" && cat "$LEIN_HOME/profiles.clj") $(test -f profiles.clj && cat profiles.clj)
INPUTS="$* $(cat project.clj) $LEIN_VERSION $(test -f "$LEIN_HOME/profiles.clj" && cat "$LEIN_HOME/profiles.clj") $(test -f profiles.clj && cat profiles.clj)"

if command -v shasum >/dev/null 2>&1; then
SUM="shasum"
Expand Down

0 comments on commit 7677dab

Please sign in to comment.