Closed ojizero closed 6 years ago
We can now define a single default build command to run on any system if the system doesn't have a specific command defined in the spec.
name: example-app build: default: cmd: ./generic-script.sh windows: cmd: powershell args: - "-ExecutionPolicy" - "Bypass" - "-File" - ".\\build.ps1"
The above example spec would run the generic script on all OSs except on windows where it would the custom defined script
Closes #84
LGTM. Thank you very much!!!
We can now define a single default build command to run on any system if the system doesn't have a specific command defined in the spec.
The above example spec would run the generic script on all OSs except on windows where it would the custom defined script
Closes #84