From 1f3c60968a937a32a26bf608d37e0d6b4abdb022 Mon Sep 17 00:00:00 2001 From: Michael Vincerra Date: Thu, 31 Jan 2019 14:09:22 -0800 Subject: [PATCH] Moves all bundle_lister.py and assoc. files to bundle_lister dir. Signed-off-by: Michael Vincerra --- source/scripts/_python/Makefile | 6 +++--- source/scripts/_python/{ => bundle_lister}/README.md | 0 source/scripts/_python/{ => bundle_lister}/bundle_lister.py | 0 .../_python/{ => bundle_lister}/cloned_repo/.gitkeep | 0 source/scripts/_python/{ => bundle_lister}/requirements.txt | 0 source/scripts/_python/{ => bundle_lister}/styles.css | 0 source/scripts/_python/{ => bundle_lister}/template.html | 0 7 files changed, 3 insertions(+), 3 deletions(-) rename source/scripts/_python/{ => bundle_lister}/README.md (100%) rename source/scripts/_python/{ => bundle_lister}/bundle_lister.py (100%) rename source/scripts/_python/{ => bundle_lister}/cloned_repo/.gitkeep (100%) rename source/scripts/_python/{ => bundle_lister}/requirements.txt (100%) rename source/scripts/_python/{ => bundle_lister}/styles.css (100%) rename source/scripts/_python/{ => bundle_lister}/template.html (100%) diff --git a/source/scripts/_python/Makefile b/source/scripts/_python/Makefile index d7b5ffc2..b94b2670 100644 --- a/source/scripts/_python/Makefile +++ b/source/scripts/_python/Makefile @@ -1,9 +1,9 @@ py: - python bundle_lister.py - cp bundles.html.txt ../../clear-linux/reference/bundles + python bundle_lister/bundle_lister.py + cp bundle_lister/bundles.html.txt ../../clear-linux/reference/bundles rm -rf cloned_repo/* - rm bundles.html.txt + rm bundle_lister/bundles.html.txt @echo "Python script finished successfully!" diff --git a/source/scripts/_python/README.md b/source/scripts/_python/bundle_lister/README.md similarity index 100% rename from source/scripts/_python/README.md rename to source/scripts/_python/bundle_lister/README.md diff --git a/source/scripts/_python/bundle_lister.py b/source/scripts/_python/bundle_lister/bundle_lister.py similarity index 100% rename from source/scripts/_python/bundle_lister.py rename to source/scripts/_python/bundle_lister/bundle_lister.py diff --git a/source/scripts/_python/cloned_repo/.gitkeep b/source/scripts/_python/bundle_lister/cloned_repo/.gitkeep similarity index 100% rename from source/scripts/_python/cloned_repo/.gitkeep rename to source/scripts/_python/bundle_lister/cloned_repo/.gitkeep diff --git a/source/scripts/_python/requirements.txt b/source/scripts/_python/bundle_lister/requirements.txt similarity index 100% rename from source/scripts/_python/requirements.txt rename to source/scripts/_python/bundle_lister/requirements.txt diff --git a/source/scripts/_python/styles.css b/source/scripts/_python/bundle_lister/styles.css similarity index 100% rename from source/scripts/_python/styles.css rename to source/scripts/_python/bundle_lister/styles.css diff --git a/source/scripts/_python/template.html b/source/scripts/_python/bundle_lister/template.html similarity index 100% rename from source/scripts/_python/template.html rename to source/scripts/_python/bundle_lister/template.html