summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2000-11-05 03:15:27 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2000-11-05 03:15:27 +0000
commit6211efc854abd87fa4a487b857818ffb492c8383 (patch)
tree73495c396bb3b4c9d809ca3738b7c41c98dbcc4b
parent813237b30965680994496d1205698e244c46b0fc (diff)
downloadnautilus-6211efc854abd87fa4a487b857818ffb492c8383.tar.gz
Fix a typo that was causing the script to always bail.
* src/run-nautilus: Fix a typo that was causing the script to always bail.
-rw-r--r--ChangeLog5
-rwxr-xr-xsrc/run-nautilus2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 07f8fc634..ef5c1df02 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-04 Ramiro Estrugo <ramiro@eazel.com>
+
+ * src/run-nautilus:
+ Fix a typo that was causing the script to always bail.
+
2000-11-04 Almer S. Tigelaar <almer1@dds.nl>
* configure.in: Add 'nl' to ALL_LINGUAS.
diff --git a/src/run-nautilus b/src/run-nautilus
index 5e3b0395f..2fa8ba96f 100755
--- a/src/run-nautilus
+++ b/src/run-nautilus
@@ -26,7 +26,7 @@ if [ $ps_rv -eq 1 ]
then
## Do a sanity check on the nautilus RPM
nautilus-verify-rpm.sh
- if [ $? -ne 1 ]
+ if [ $? -ne 0 ]
then
exit 1
fi