-
-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Here's another newbie question. Now that I want to start uploading my mods to GitHub, I keep getting error messages when I try to publish them. Unfortunately, I don't know how to resolve them.
First, everything seems to work fine.
Publishing: c:\Users\...\AppData\Roaming\Factorio\mods\factorio_qol_age_space_age 1.0.2
Got config section package from c:\Users\...\AppData\Local\Temp\vscode-8056-fmtk-config.json
Changelog section 1.0.2 stamped 2025-08-08
[main 82ab589] preparing release of version 1.0.2
1 file changed, 1 insertion(+), 1 deletion(-)
Uploading to mod portal...
Published factorio_qol_age_space_age
[main a9b0a13] moved to version 1.0.3
2 files changed, 5 insertions(+), 1 deletion(-)
This is where the error messages start.
bash: line 1: /dev/tty: No such device or address
error: failed to execute prompt script (exit code 1)
fatal: could not read Username for 'https://github.com': No such file or directory
Error: returned with code 128
at ChildProcess.<anonymous> (file:///c:/Users/.../.vscode/extensions/justarandomgeek.factoriomod-debug-2.0.8/dist/fmtk-cli.js:109:9660)
at ChildProcess.emit (node:events:518:28)
at maybeClose (node:internal/child_process:1101:16)
at ChildProcess._handle.onexit (node:internal/child_process:304:5)
Everything up to the point of incrementing the version seems to work, so it appears that the issue lies with the push to GitHub.
However, I can't figure out where or what I did wrong.
My info.json loks like follows:
{
"name": "factorio_qol_age_space_age",
"version": "1.0.3",
"title": "Factorio QoL Age: Space Age",
"author": "Ingo_Igel",
"homepage": "https://github.com/Ingo-Igel",
"factorio_version": "2.0",
"dependencies": [
"base >= 2.0.23",
"space-age >= 2.0.23",
"factorio_qol_age_base_game"
],
"description": "This mod pack contains various QoL mods for the Space Age DLC and Base Game that I personally use.",
"package": {
"gallery": [
".gallery/thumbnail_huge.png"
],
"prune_gallery": true,
"readme": "README.md",
"git_publish_branch": "main",
"sync_portal_details": true
}
}