Skip to content

Commit

Permalink
Suggest direct local install instead of repo
Browse files Browse the repository at this point in the history
  • Loading branch information
kujeger committed Aug 31, 2018
1 parent 3c33893 commit b37b23e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions json-maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ def main():
json.dump(jsondata, outfile, indent=4)

print("JSON written to {0}\n"
"You can build it thus:\n\n"
"flatpak-builder build {0} --force-clean --repo "
"~/FlatPak/gog-repo --arch {1}".format(outname, gameinfo['arch']))
"You can build and install it thus:\n\n"
"flatpak-builder --user --install build {0}/{1} --force-clean "
"--arch {2}".format(os.getcwd(), outname, gameinfo['arch']))

if __name__ == '__main__':
main()

0 comments on commit b37b23e

Please sign in to comment.