Skip to content

Commit

Permalink
Fix plugin building bug in build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Eggbertx committed Mar 8, 2024
1 parent 80f2b98 commit ed38e6a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"README.md",
)

GOCHAN_VERSION = "3.10.0"
GOCHAN_VERSION = "3.10.1"
DATABASE_VERSION = "3" # stored in DBNAME.DBPREFIXdatabase_version

PATH_NOTHING = -1
Expand Down Expand Up @@ -230,7 +230,7 @@ def build(debugging=False, plugin_path=""):

status = -1
if plugin_path != "" and plugin_path is not None:
build_cmd_base += "-buildmode=plugin" + plugin_path
build_cmd_base += ["-buildmode=plugin", plugin_path]
status = run_cmd(build_cmd_base, realtime=True, print_command=True)[1]
if status != 0:
print(f"Failed building plugin at {plugin_path}, see output for details")
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gochan.js",
"version": "3.10.0",
"version": "3.10.1",
"description": "",
"main": "./ts/main.ts",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion html/error/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<h1>404: File not found</h1>
<img src="/error/lol 404.gif" border="0" alt="">
<p>The requested file could not be found on this server.</p>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
</body>
</html>
2 changes: 1 addition & 1 deletion html/error/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<h1>Error 500: Internal Server error</h1>
<img src="/error/server500.gif" border="0" alt="">
<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>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
</body>
</html>
2 changes: 1 addition & 1 deletion html/error/502.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
<h1>Error 502: Bad gateway</h1>
<img src="/error/server500.gif" border="0" alt="">
<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>
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.0
<hr/>Site powered by <a href="https://github.com/gochan-org/gochan" target="_blank">Gochan</a> v3.10.1
</body>
</html>

0 comments on commit ed38e6a

Please sign in to comment.