From 4dae5ee264eda60d55d9d82cfce5123dda29848a Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 4 Oct 2016 11:37:31 +0100 Subject: [PATCH] Move build scripts to bin sub-directory --- CONTRIBUTING.md | 2 +- Makefile | 10 +++++----- cross-compile => bin/cross-compile | 0 make_manual.py => bin/make_manual.py | 0 upload-github => bin/upload-github | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename cross-compile => bin/cross-compile (100%) rename make_manual.py => bin/make_manual.py (100%) rename upload-github => bin/upload-github (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3c2369672..19350827f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -159,4 +159,4 @@ Add your fs to the docs * `docs/content/docs.md` - list of remotes in config section * `docs/content/about.md` - front page of rclone.org * `docs/layouts/chrome/navbar.html` - add it to the website navigation - * `make_manual.py` - add the page to the `docs` constant + * `bin/make_manual.py` - add the page to the `docs` constant diff --git a/Makefile b/Makefile index e4745576c..5895b6b8a 100644 --- a/Makefile +++ b/Makefile @@ -46,8 +46,8 @@ doc: rclone.1 MANUAL.html MANUAL.txt rclone.1: MANUAL.md pandoc -s --from markdown --to man MANUAL.md -o rclone.1 -MANUAL.md: make_manual.py docs/content/*.md commanddocs - ./make_manual.py +MANUAL.md: bin/make_manual.py docs/content/*.md commanddocs + ./bin/make_manual.py MANUAL.html: MANUAL.md pandoc -s --from markdown --to html MANUAL.md -o MANUAL.html @@ -78,13 +78,13 @@ upload: rclone -v copy build/ memstore:downloads-rclone-org upload_github: - ./upload-github $(TAG) + ./bin/upload-github $(TAG) cross: doc - ./cross-compile $(TAG) + ./bin/cross-compile $(TAG) beta: - ./cross-compile $(TAG)β + ./bin/cross-compile $(TAG)β rm build/*-current-* rclone -v copy build/ memstore:pub-rclone-org/$(TAG)β @echo Beta release ready at http://pub.rclone.org/$(TAG)%CE%B2/ diff --git a/cross-compile b/bin/cross-compile similarity index 100% rename from cross-compile rename to bin/cross-compile diff --git a/make_manual.py b/bin/make_manual.py similarity index 100% rename from make_manual.py rename to bin/make_manual.py diff --git a/upload-github b/bin/upload-github similarity index 100% rename from upload-github rename to bin/upload-github