We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a819525 + 5417597 commit 85fb882Copy full SHA for 85fb882
1 file changed
scripts/install.sh
@@ -254,7 +254,7 @@ main() {
254
# Check if the installed binary is the one that will be found in PATH
255
local path_binary
256
path_binary=$(command -v "entire" 2>/dev/null || true)
257
- if [[ -n "$path_binary" && "$path_binary" != "$install_path" ]]; then
+ if [[ -n "$path_binary" && ! "$path_binary" -ef "$install_path" ]]; then
258
# This case is a bit weird, because some other 'entire' is found on PATH. Warn user.
259
echo ""
260
echo -e "${YELLOW}!${NC} ${BOLD}WARNING: PATH conflict detected${NC}"
0 commit comments