0

I'm trying to create a Fleet Run Configuration (v1.9) for my project in the run.json file, which should run a shell script with certain parameters. The problem is that the documentation only describes how to mark configuration as a command call, by setting "type": "command", but does not tell exactly how to run the desired script. Is it possible?

Yahor Barkouski
  • 1,361
  • 1
  • 5
  • 21

1 Answers1

1

After a few dozen minutes Fleet suggested that it is necessary to set another argument for the "command" configuration type - "program", in the following format "program": "./${your-script-file-name}.sh", in which case configuration will run successfully. It is worth noting, program flag in Fleet 1.9 documentation is omitted.

Yahor Barkouski
  • 1,361
  • 1
  • 5
  • 21
  • There is a reference about the `program` argument here: https://www.jetbrains.com/help/fleet/execute-raw-commands.html – Andrey Oct 27 '22 at 18:49