Skip to content

Commit

Permalink
drop external git links
Browse files Browse the repository at this point in the history
  • Loading branch information
stoecker committed Apr 18, 2024
1 parent 9999b38 commit 155f5e0
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
27 changes: 27 additions & 0 deletions github
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/perl

use strict;
use Cwd;

open(my $file, '<', 'github_plugins') or die;

if(($ARGV[0]||'') eq 'checkout')
{
for my $plugin (<$file>)
{
chomp($plugin);
system('git','clone',"https://github.com/JOSM/$plugin");
}
}
else
{
my $dir = cwd();
for my $plugin (<$file>)
{
chomp($plugin);
chdir($plugin);
system('git','pull');
chdir($dir);
}
}
close($file);
24 changes: 24 additions & 0 deletions github_plugins
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Building-Generalization
Color
Dxf-Import
Mapillary
MapRoulette
PicLayer
ShapeTools
areaselector
austriaaddresshelper
auto-tools
changeset-viewer
configuration
conflation
continuos-download
improve-way
indoorhelper
kartverketimport
osm-obj-info
pt_assistant
rex
todo
turnlanes-tagging
validations_testing
wikipedia

0 comments on commit 155f5e0

Please sign in to comment.