On a Fedora 21 system under Bash, trying to execute a non-existing command starting with a period results in a return to the prompt without any error message: $ .thisfiledoesnotexist $ More specifically, it silently returns to the prompt with a failure code: $ if .thisfiledoesnotexist ; then echo OK; else echo KO; fi KO $ Under bash --norc, the same command fails properly: $ bash --norc bash-4.3$ .thisfiledoesnotexist bash: .thisfiledoesnotexist: command not found bash-4.3$ exit exit $ The cause can be narrowed down to PackageKit: $ bash --norc bash-4.3$ .thisfiledoesnotexist bash: .thisfiledoesnotexist: command not found bash-4.3$ source /etc/profile.d/PackageKit.sh bash-4.3$ .thisfiledoesnotexist bash-4.3$ exit exit $
We moved the upstream bugtracker to GitHub a long time ago. If this issue still affects you please re-create the issue here: https://github.com/hughsie/PackageKit/issues Sorry for the impersonal message, and fingers crossed your issue no longer happens. Thanks.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.