Check perms on home directory when running.
[buildfarm-client.git] / run_build.pl
index 40a63d61eefe1de14e72bc833f7e5a2cfc24de71..1e0e621cedf3625f747fba75396798f9f96b4b4c 100755 (executable)
@@ -562,11 +562,9 @@ elsif (!$from_source)
     $last_success_snap = find_last('success.snap');
     $forcerun = 1 unless (defined($last_run_snap));
 
-    # If config file changed, force a rebuild.  This assumes that the config
-    # file is in the CWD, which may not always be true, so handle it by
-    # adding 1 to the value of last_config, which will force the rebuild.
-    ($current_config) = (stat $orig_dir.'/'.$buildconf)[9] || ($last_config+1);
-    if ($current_config > $last_config)
+    # If config file changed, force a rebuild
+    ($current_config) = (stat $orig_dir.'/'.$buildconf)[9];
+    if (defined $current_config && $current_config > $last_config)
     {
       $last_status = 0;
       set_last('config',$current_config) unless $nostatus;