Ignore:
Timestamp:
2024-04-18T19:05:43+02:00 (7 months ago)
Author:
stoecker
Message:

add status

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/github

    r36252 r36255  
    1414  }
    1515}
     16elsif(($ARGV[0]||'') eq 'status')
     17{
     18  my $dir = cwd();
     19  for my $plugin (<$file>)
     20  {
     21    print($plugin);
     22    chomp($plugin);
     23    chdir($plugin);
     24    system('git','status',$plugin);
     25    chdir($dir);
     26  }
     27}
    1628else
    1729{
     
    1931  for my $plugin (<$file>)
    2032  {
     33    print($plugin);
    2134    chomp($plugin);
    2235    chdir($plugin);
Note: See TracChangeset for help on using the changeset viewer.