Skip to content

Commit

Permalink
Tweak informative echos a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
FichteFoll committed Jan 12, 2025
1 parent e9b080b commit 46109f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions syntax-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ get_url() {
else
printf "$template_4079\n" "$INPUT_BUILD";
fi;;
*) echo >&2 "Invalid build reference"; exit 100;;
*) echo >&2 "Invalid build reference: $INPUT_BUILD"; exit 100;;
esac
}

Expand Down Expand Up @@ -72,7 +72,7 @@ link_additional_packages() {
IFS=","
for pkg in $INPUT_ADDITIONAL_PACKAGES; do
# link additional package into testing dir's Package folder
echo "Linking third-party package from $pkg"
echo "Linking third-party package from '$pkg'"
ln -vs "$(realpath "$pkg")" "$packages/$(basename "$pkg")"
# drop additional syntax tests
if [[ $INPUT_ADDITIONAL_TESTS != true ]]; then
Expand All @@ -89,7 +89,7 @@ create_dummy_syntaxes() {
mkdir "$packages/_Dummy"
for scope in $INPUT_DUMMY_SYNTAXES; do
# link additional package into testing dir's Package folder
echo "Creating dummy syntax for scope $scope"
echo "Creating dummy syntax for scope '$scope'"
cat << SYNTAX > "$packages/_Dummy/$scope.sublime-syntax"
%YAML 1.2
---
Expand Down

0 comments on commit 46109f8

Please sign in to comment.