Skip to content

Commit

Permalink
Rewrite entrypoint in bash
Browse files Browse the repository at this point in the history
Fixes #2
Fixes #3
  • Loading branch information
lucianposton committed Feb 18, 2020
1 parent 7c8482c commit 4d720f5
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
#!/bin/sh -l
#!/bin/bash -l

echo "======================"
echo "= Linting YAML files ="
echo "======================"

# Use the current directory by default
export INPUT_FILE_OR_DIR=${INPUT_FILE_OR_DIR:-.}

STRICT=""
if [ "$INPUT_STRICT" == "true" ]; then
STRICT="-s"
if [[ -n "$INPUT_CONFIG_FILE" ]]; then
options+=(-c "$INPUT_CONFIG_FILE")
fi

if [ ! -z "$INPUT_CONFIG_FILE" ]; then
CONFIG_FILE="-c $INPUT_CONFIG_FILE"
if [[ -n "$INPUT_CONFIG_DATA" ]]; then
options+=(-d "$INPUT_CONFIG_DATA")
fi

if [ ! -z "$INPUT_CONFIG_DATA" ]; then
CONFIG_DATA="-d $INPUT_CONFIG_DATA"
options+=(-f "$INPUT_FORMAT")

if [[ "$INPUT_STRICT" == "true" ]]; then
options+=(-s)
fi

yamllint $CONFIG_FILE $CONFIG_DATA -f $INPUT_FORMAT $STRICT $INPUT_FILE_OR_DIR
# Enable globstar so ** globs recursively
shopt -s globstar
# Use the current directory by default
options+=(${INPUT_FILE_OR_DIR:-.})
shopt -u globstar

yamllint "${options[@]}"

0 comments on commit 4d720f5

Please sign in to comment.