aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-03-21 18:14:07 +0100
committerTeddy Wing2021-03-21 18:17:46 +0100
commit85bf35463de38bbbd6a4cd1924222bc713dd1959 (patch)
tree464e989d2fe98880f37ffe57504985512b649241
parent3dd31fad74fe802b1a3a653dfb8a8ff49da30779 (diff)
downloadPeniquitous-85bf35463de38bbbd6a4cd1924222bc713dd1959.tar.bz2
Move userscript-header.txt into main.js.inHEADv0.1.0master
We're not including anything above `main.js.in`, so the top of that file always ends up as the top of the final user script. We don't need a separate build step to include it.
-rw-r--r--Makefile4
-rw-r--r--main.js.in7
-rw-r--r--userscript-header.txt7
3 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 71c081c..2a2402e 100644
--- a/Makefile
+++ b/Makefile
@@ -48,8 +48,8 @@ build/main.js: main.js.in $(addprefix build/,$(IMPORTS_BASENAME))
$< \
> $@
-peniquitous.user.js: build/main.js userscript-header.txt
- cat userscript-header.txt build/main.js > $@
+peniquitous.user.js: build/main.js
+ cp $< $@
.PHONY: clean
clean:
diff --git a/main.js.in b/main.js.in
index 4444d79..43be680 100644
--- a/main.js.in
+++ b/main.js.in
@@ -1,3 +1,10 @@
+// ==UserScript==
+// @name Peniquitous
+// @description Ubiquitous Ctrl-P & Ctrl-N
+// @version 0.1.0
+// @namespace com.teddywing
+// ==/UserScript==
+
// Copyright (c) 2015, 2021 Teddy Wing
//
// This program is free software: you can redistribute it and/or modify
diff --git a/userscript-header.txt b/userscript-header.txt
deleted file mode 100644
index 9b7eb09..0000000
--- a/userscript-header.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-// ==UserScript==
-// @name Peniquitous
-// @description Ubiquitous Ctrl-P & Ctrl-N
-// @version 0.1.0
-// @namespace com.teddywing
-// ==/UserScript==
-