-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://josm.openstreetmap.de/osmsvn/applications/editors/josm/plugins@36252 b9d5c4c9-76e1-0310-9c85-f3177eceb1e4
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |