Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ curl -sL --retry 3 "${RELEASE_URL}" | tar zx --strip 1
echo "Installing to $DESTDIR"
install circleci "$DESTDIR"

command -v circleci
command -v "$DESTDIR"circleci
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to remove any potential trailing / in DESTDIR and force a / before the binary name.

Suggested change
command -v "$DESTDIR"circleci
command -v "${DESTDIR%/}"/circleci


# Delete the working directory when the install was successful.
rm -r "$SCRATCH"