Can't make installer for vice_x64

I can’t make installer for vice_x64
when run the script it say missing core ??

files:

  • file1: N/A:Please select the game disk
    game:
    core: vice_x64
    main_file: file1
    installer:
  • merge:
    dst: $GAMEDIR
    src: file1

Can you fix the formatting of the installer so I can see what’s wrong with it?

im not shure what you like me to do ?? but like this??

{
“count”: 1,
“next”: null,
“previous”: null,
“results”: [
{
“id”: 8561,
“game”: “http://lutris.net/api/games/007-car-chase?format=json”,
“game_slug”: “007-car-chase”,
“name”: “007 Car Chase”,
“year”: 1985,
“user”: “MrCoolSpan”,
“runner”: “libretro”,
“slug”: “007-car-chase-c64”,
“version”: “C64”,
“description”: null,
“notes”: “”,
“created_at”: “2018-06-07T09:52:09.578573Z”,
“updated_at”: “2018-06-07T20:13:09.749345Z”,
“draft”: false,
“published”: true,
“rating”: “”,
“steamid”: null,
“gogslug”: “”,
“humblestoreid”: “”,
“script”: {
“files”: [
{
“file1”: “N/A:Please select the Game image file”
}
],
“game”: [
{
“core”: “vice_x64”
},
{
“main_file”: “file1”
}
],
“installer”: [
{
“move”: {
“src”: “file1”,
“dst”: “$GAMEDIR”
}
}
]
},
“content”: “files:\n- file1: N/A:Please select the Game image file\ngame:\n- core: vice_x64\n- main_file: file1\ninstaller:\n- move:\n dst: $GAMEDIR\n src: file1\n”
}
]
}

No, I meant using the code formatting in the forums so the YAML doesn’t get messed up, like this:

files:
- file1: N/A:Please select the Game image file
game:
  core: vice_x64
  main_file: file1
installer:
- move:
    dst: $GAMEDIR
    src: file1

With you last post, I was able to find which game this installer was related to and find the issue.
The ‘game’ section is a dictionary, not a list (there are no dashes).

I’ll add a validation rule so that the website will detect those errors.