Skip to content

Commit

Permalink
use https url for git clone (#117)
Browse files Browse the repository at this point in the history
* use https url for git clone

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
tgrigsby-sc and pre-commit-ci[bot] authored Mar 15, 2022
1 parent a675c97 commit 5766296
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion batch-setup/make_meta_tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import time
from collections import namedtuple
from contextlib import contextmanager
from distutils.util import strtobool
from multiprocessing import Pool
from typing import Generator
from typing import Iterator
Expand All @@ -18,6 +17,7 @@
import yaml
from batch import Buckets
from batch import run_go
from distutils.util import strtobool
from make_rawr_tiles import head_lines
from make_rawr_tiles import wait_for_jobs_to_finish
from make_rawr_tiles import wc_line
Expand Down
2 changes: 1 addition & 1 deletion batch-setup/make_rawr_tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import tempfile
from collections import namedtuple
from contextlib import contextmanager
from distutils.util import strtobool

import boto3
import yaml
from distutils.util import strtobool
from ModestMaps.Core import Coordinate
from tilequeue.command import make_config_from_argparse
from tilequeue.command import tilequeue_batch_enqueue
Expand Down
2 changes: 1 addition & 1 deletion import/import_planet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt install -y -q make g++ git awscli build-

# make osm2pgsql from source
if [[ ! -f "${OSM2PGSQL}" ]]; then
git clone git://github.com/openstreetmap/osm2pgsql.git
git clone https://github.com/openstreetmap/osm2pgsql.git
cd osm2pgsql
git checkout tags/1.5.1
sudo DEBIAN_FRONTEND=noninteractive sudo apt install -y -q make cmake g++ libboost-dev libboost-system-dev \
Expand Down

0 comments on commit 5766296

Please sign in to comment.