Skip to content

Commit ed38e6a

Browse files
committed
Fix plugin building bug in build.py
1 parent 80f2b98 commit ed38e6a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

build.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"README.md",
3939
)
4040

41-
GOCHAN_VERSION = "3.10.0"
41+
GOCHAN_VERSION = "3.10.1"
4242
DATABASE_VERSION = "3" # stored in DBNAME.DBPREFIXdatabase_version
4343

4444
PATH_NOTHING = -1
@@ -230,7 +230,7 @@ def build(debugging=False, plugin_path=""):
230230

231231
status = -1
232232
if plugin_path != "" and plugin_path is not None:
233-
build_cmd_base += "-buildmode=plugin" + plugin_path
233+
build_cmd_base += ["-buildmode=plugin", plugin_path]
234234
status = run_cmd(build_cmd_base, realtime=True, print_command=True)[1]
235235
if status != 0:
236236
print(f"Failed building plugin at {plugin_path}, see output for details")

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gochan.js",
3-
"version": "3.10.0",
3+
"version": "3.10.1",
44
"description": "",
55
"main": "./ts/main.ts",
66
"private": true,

html/error/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<h1>404: File not found</h1>
88
<img src="/error/lol 404.gif" border="0" alt="">
99
<p>The requested file could not be found on this server.</p>
10-
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
10+
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
1111
</body>
1212
</html>

html/error/500.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<h1>Error 500: Internal Server error</h1>
88
<img src="/error/server500.gif" border="0" alt="">
99
<p>The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The <a href="https://en.wikipedia.org/wiki/Idiot">system administrator</a> will try to fix things as soon they get around to it, whenever that is. Hopefully soon.</p>
10-
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
10+
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
1111
</body>
1212
</html>

html/error/502.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<h1>Error 502: Bad gateway</h1>
88
<img src="/error/server500.gif" border="0" alt="">
99
<p>The server encountered an error while trying to serve the page, and we apologize for the inconvenience. The <a href="https://en.wikipedia.org/wiki/Idiot">system administrator</a> will try to fix things as soon they get around to it, whenever that is. Hopefully soon.</p>
10-
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
10+
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
1111
</body>
1212
</html>

0 commit comments

Comments
 (0)