From 2efff7bd04838047541a2669c0db8938d4caed19 Mon Sep 17 00:00:00 2001 From: Dan Leech Date: Mon, 19 Oct 2015 11:42:02 +0100 Subject: [PATCH] Tidied up --- build.js | 2 +- apple-touch-icon.svg => src/apple-touch-icon.svg | 0 sharing.html => src/sharing.html | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename apple-touch-icon.svg => src/apple-touch-icon.svg (100%) rename sharing.html => src/sharing.html (100%) diff --git a/build.js b/build.js index d3a9828e..b492a338 100644 --- a/build.js +++ b/build.js @@ -142,7 +142,7 @@ var sharingFooter = fs.readFileSync('./src/sharing-footer.html', 'utf8'); // Put all sharing content together and export to sharing.html var sharingHtmlOutput = sharingHeader + sharingMain + sharingFooter; -fs.writeFile("./sharing.html", sharingHtmlOutput, function(err) { +fs.writeFile("./src/sharing.html", sharingHtmlOutput, function(err) { if(err) { return console.log(err); } diff --git a/apple-touch-icon.svg b/src/apple-touch-icon.svg similarity index 100% rename from apple-touch-icon.svg rename to src/apple-touch-icon.svg diff --git a/sharing.html b/src/sharing.html similarity index 100% rename from sharing.html rename to src/sharing.html