[Question] CLI using Flatpak on Linux
Is there a way to use CLI options in a Flatpak version on Linux?
flatpak run io.github.MakovWait.Godots -- command doesn't seem to work
Sadly I have no idea :c
So there is a binary /var/lib/flatpak/exports/bin/io.github.MakovWait.Godots which can be used but it seems that it doesn't provide all the Godot's CLI options such as --export-release
@ExposedCat I did it in a script today. I looked at the path of the applet and it was /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=godots io.github.MakovWait.Godots
My full command to launch a specific project with the editor is: /usr/bin/flatpak run --branch=stable --arch=x86_64 --command=godots io.github.MakovWait.Godots exec -- -e --path /path/to/project_folder
@MrEliptik thanks for noting! my issue was/is to export the project from CLI. Basically I'm working in an extenal IDE and I don't want to go through menus all the time