diff options
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/check_changelog_last_modification.sh | 2 | ||||
-rwxr-xr-x | .travis/create_artifacts.sh | 2 | ||||
-rwxr-xr-x | .travis/nightlies.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.travis/check_changelog_last_modification.sh b/.travis/check_changelog_last_modification.sh index d6f8a1639..ae0da877b 100755 --- a/.travis/check_changelog_last_modification.sh +++ b/.travis/check_changelog_last_modification.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash # -# This scriptplet validates nightlies age and notifies is if it gets too old +# This scriptlet validates nightlies age and notifies is if it gets too old # # Copyright: SPDX-License-Identifier: GPL-3.0-or-later # diff --git a/.travis/create_artifacts.sh b/.travis/create_artifacts.sh index 32b9a0bb7..a5349cca3 100755 --- a/.travis/create_artifacts.sh +++ b/.travis/create_artifacts.sh @@ -3,7 +3,7 @@ # Artifacts creation script. # This script generates two things: # 1) The static binary that can run on all linux distros (built-in dependencies etc) -# 2) The distribution source tarbal +# 2) The distribution source tarball # # Copyright: SPDX-License-Identifier: GPL-3.0-or-later # diff --git a/.travis/nightlies.sh b/.travis/nightlies.sh index e60ee2797..7240a784d 100755 --- a/.travis/nightlies.sh +++ b/.travis/nightlies.sh @@ -29,7 +29,7 @@ PREVIOUS_NIGHTLY_COUNT="$(rev <packaging/version | cut -d- -f 2 | rev)" # If no commits since release, just stop if [ "${COMMITS_SINCE_RELEASE}" == "${PREVIOUS_NIGHTLY_COUNT}" ]; then - echo "No changes since last nighthly release, nothing else to do" + echo "No changes since last nightly release, nothing else to do" exit 0 fi |