aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--alias3
-rwxr-xr-xtools/git/check-repos.sh2
2 files changed, 2 insertions, 3 deletions
diff --git a/alias b/alias
index 2b7f2bd..62e023b 100644
--- a/alias
+++ b/alias
@@ -368,10 +368,9 @@ alias sample.mbtiles='curl -O https://docs.mapbox.com/help/data/trails.mbtiles'
368alias sample.kml='curl -O https://docs.mapbox.com/help/data/farmers_markets.kml' 368alias sample.kml='curl -O https://docs.mapbox.com/help/data/farmers_markets.kml'
369alias sample.osm='curl https://api.openstreetmap.org/api/0.6/node/3428095932' 369alias sample.osm='curl https://api.openstreetmap.org/api/0.6/node/3428095932'
370alias sample.poly='curl -O http://download.geofabrik.de/asia/taiwan.poly' 370alias sample.poly='curl -O http://download.geofabrik.de/asia/taiwan.poly'
371alias sample.image='curl -O https://file-examples.com/storage/fe4b4c6261634c76e91986b/2017/10/file_example_JPG_100kB.jpg'
372alias sample.gpkg='curl -O http://www.geopackage.org/data/sample1_1.gpkg' 371alias sample.gpkg='curl -O http://www.geopackage.org/data/sample1_1.gpkg'
373alias sample.mvt='curl -O https://demotiles.maplibre.org/tiles/5/25/14.pbf' 372alias sample.mvt='curl -O https://demotiles.maplibre.org/tiles/5/25/14.pbf'
374alias sample.mp4='curl -O https://jsoncompare.org/LearningContainer/SampleFiles/Video/MP4/Sample-MP4-Video-File-Download.mp4' 373alias sample.lorem='curl -o lorem http://metaphorpsum.com/paragraphs/4/16'
375alias proto.mvt='curl -O https://raw.githubusercontent.com/mapbox/vector-tile-spec/master/2.1/vector_tile.proto' 374alias proto.mvt='curl -O https://raw.githubusercontent.com/mapbox/vector-tile-spec/master/2.1/vector_tile.proto'
376alias proto.osm='curl -O https://raw.githubusercontent.com/openstreetmap/OSM-binary/master/src/osmformat.proto' 375alias proto.osm='curl -O https://raw.githubusercontent.com/openstreetmap/OSM-binary/master/src/osmformat.proto'
377alias proto.geobuf='curl -O https://raw.githubusercontent.com/mapbox/geobuf/master/geobuf.proto' 376alias proto.geobuf='curl -O https://raw.githubusercontent.com/mapbox/geobuf/master/geobuf.proto'
diff --git a/tools/git/check-repos.sh b/tools/git/check-repos.sh
index 5180fc9..abaa3a2 100755
--- a/tools/git/check-repos.sh
+++ b/tools/git/check-repos.sh
@@ -28,7 +28,7 @@ while read repo remote; do
28 changes="$(git -c color.status=always status --short)" 28 changes="$(git -c color.status=always status --short)"
29 29
30 # Diff between from local repo and remote 30 # Diff between from local repo and remote
31 cherry="$([ -n "`git remote`" ] && git cherry)" 31 cherry="$([ -n "`git remote`" ] && git cherry 2>/dev/null)"
32 32
33 if [[ $COUNT_ONLY == true ]]; then 33 if [[ $COUNT_ONLY == true ]]; then
34 # If '-n' is specified, only count repo with changes/local-diff 34 # If '-n' is specified, only count repo with changes/local-diff