From d4c59fdf5691df0c4f27697d3429f392db4fc876 Mon Sep 17 00:00:00 2001 From: Michael Vincerra Date: Fri, 1 Feb 2019 11:43:21 -0800 Subject: [PATCH] Reset file structure to original organization. Signed-off-by: Michael Vincerra --- source/scripts/_python/Makefile | 8 ++++---- source/scripts/_python/{bundle_lister => }/README.md | 0 .../scripts/_python/{bundle_lister => }/bundle_lister.py | 0 .../_python/{bundle_lister => }/cloned_repo/.gitkeep | 0 .../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, 4 insertions(+), 4 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 b94b2670..92d7e523 100644 --- a/source/scripts/_python/Makefile +++ b/source/scripts/_python/Makefile @@ -1,9 +1,9 @@ py: - python bundle_lister/bundle_lister.py - cp bundle_lister/bundles.html.txt ../../clear-linux/reference/bundles - rm -rf cloned_repo/* - rm bundle_lister/bundles.html.txt + python bundle_lister.py + cp bundles.html.txt ../../clear-linux/reference/bundles + rm -rf bundle_lister/cloned_repo/* + rm bundles.html.txt @echo "Python script finished successfully!" diff --git a/source/scripts/_python/bundle_lister/README.md b/source/scripts/_python/README.md similarity index 100% rename from source/scripts/_python/bundle_lister/README.md rename to source/scripts/_python/README.md diff --git a/source/scripts/_python/bundle_lister/bundle_lister.py b/source/scripts/_python/bundle_lister.py similarity index 100% rename from source/scripts/_python/bundle_lister/bundle_lister.py rename to source/scripts/_python/bundle_lister.py diff --git a/source/scripts/_python/bundle_lister/cloned_repo/.gitkeep b/source/scripts/_python/cloned_repo/.gitkeep similarity index 100% rename from source/scripts/_python/bundle_lister/cloned_repo/.gitkeep rename to source/scripts/_python/cloned_repo/.gitkeep diff --git a/source/scripts/_python/bundle_lister/requirements.txt b/source/scripts/_python/requirements.txt similarity index 100% rename from source/scripts/_python/bundle_lister/requirements.txt rename to source/scripts/_python/requirements.txt diff --git a/source/scripts/_python/bundle_lister/styles.css b/source/scripts/_python/styles.css similarity index 100% rename from source/scripts/_python/bundle_lister/styles.css rename to source/scripts/_python/styles.css diff --git a/source/scripts/_python/bundle_lister/template.html b/source/scripts/_python/template.html similarity index 100% rename from source/scripts/_python/bundle_lister/template.html rename to source/scripts/_python/template.html