aboutsummaryrefslogtreecommitdiff
path: root/hooks/pre-commit.js
diff options
context:
space:
mode:
Diffstat (limited to 'hooks/pre-commit.js')
-rw-r--r--hooks/pre-commit.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/hooks/pre-commit.js b/hooks/pre-commit.js
deleted file mode 100644
index d917d59a..00000000
--- a/hooks/pre-commit.js
+++ /dev/null
@@ -1,18 +0,0 @@
-const fs = require("fs");
-const shell = require("shelljs");
-
-// Open the readme file
-const readme = fs.readFileSync("README.md", "utf8");
-
-// Find the line which starts with "![Screenshot]"
-const screenshotLine = readme.split("\n").find(line => line.startsWith("![Screenshot]"));
-
-// Replace the line with the new screenshot
-const newScreenshotLine = `![Screenshot](https://api.thatcomputerscientist.com/screenshot?random=${Math.random()})`;
-const newReadme = readme.replace(screenshotLine, newScreenshotLine);
-
-// Write the new readme file
-fs.writeFileSync("README.md", newReadme);
-
-// Add the readme file to the git commit
-shell.exec("git add README.md");