Issues pushing an empty commit to github

Good day,

i’d love to push an empty commit to github to trigger a github pages rebuild.
However i keep getting stuck at the deployment step as it fails on me with the following errors:

1
Installing deploy dependencies
Successfully installed dpl-script-1.10.12
1 gem installed
dpl.2
Preparing deploy
Cleaning up git repository with git stash --all. If you need build artifacts for deployment, set deploy.skip_cleanup: true. See https://docs.travis-ci.com/user/deployment#Uploading-Files-and-skip_cleanup.
Saved working directory and index state WIP on (no branch): fe92977 Again
dpl.3
Deploying application
bash: scripts/jekyll-rebuild.sh: No such file or directory
HEAD detached at fe92977
Changes not staged for commit:
(use “git add …” to update what will be committed)
(use “git checkout – …” to discard changes in working directory)
modified: script/cibuild
modified: script/jekyll-rebuild.sh
Untracked files:
(use “git add …” to include in what will be committed)
.bundle/
vendor/
no changes added to commit (use “git add” and/or “git commit -a”)
Dropped refs/stash@{0} (5660176f64a1f1d989d2e6417697c47c5c34d249)
Script failed with status 127
failed to deploy

Travis.yml: https://github.com/flowinho/flowinho.github.io/blob/master/.travis.yml

Scripts:

Thank you in advance!

The problem is with your script: command. The message says that it failed with exit code 127 (typically means that a command is not found). See Debugging a script [Bash Hackers Wiki] for Bash debugging tips.

In the future, please link to the build instead of copying stuff here – otherwise, you are not giving full information about the build.