Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update get-shapefiles.py renaming project.yaml to project.mml #2501

Merged
merged 1 commit into from
Dec 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/get-shapefiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def main():
"of downloaded data")
parser.add_argument(
'-f', "--force", dest='option_force', action='store_true',
help="force continuing even if project.yaml does not exist")
help="force continuing even if project.mml does not exist")
parser.add_argument(
'-l', "--no-curl", dest='option_no_curl', action='store_true',
help="do not use 'curl' even if available")
Expand Down Expand Up @@ -262,9 +262,9 @@ def main():
os.chdir(os.path.dirname(__file__))
else:
os.chdir(os.path.join(os.path.dirname(__file__), '..'))
if not os.path.isfile("project.yaml"):
if not os.path.isfile("project.mml"):
sys.exit(
"""\n Error: project.yaml not found.
"""\n Error: project.mml not found.
Are you sure you are in the correct folder?
Otherwise, use '-f' option to go on creating or updating the '""" +
args.data_dir + """' directory
Expand Down