Hi there,
I have the following repository that I’m trying to build on Travis,
It has a “script” folder that contains a “cibuild” file which is my Jekyll build script. I’ve used this with a number of projects. Same script etc…
In the travis config, I have the following,
before_script:
- chmod +x ./script/cibuild
script: “./script/cibuild”
The chmod command appears to run successfully, but the script call fails with “No such file or directory”. Any idea what’s going on? I can execute it locally with the same command without issue.
Nick.
Update:
I just changed my travis config,
before_script:
- ls script
- chmod +x ./script/cibuild
the output from the first command proves that the file is on the server where I expect it to be.