Selaa lähdekoodia

Clean and rebuild during each recording

Daniel Gempesaw 9 vuotta sitten
vanhempi
sitoutus
b349a3ec22
1 muutettua tiedostoa jossa 3 lisäystä ja 5 poistoa
  1. 3 5
      t/bin/record.pl

+ 3 - 5
t/bin/record.pl

@@ -51,10 +51,8 @@ sub kill_server {
 
 
 sub reset_env {
-    if (@ARGV && $ARGV[0] eq 'reset') {
-        print 'Cleaning. ';
-        `cd $repo_root && dzil clean`;
-    }
-    print 'Taking out any existing servers. ' . "\n";
+    print 'dzil cleaning...';
+    `cd $repo_root && dzil clean`;
+    print 'and taking out any existing servers. ' . "\n";
     kill_server();
 }