10 lines
298 B
YAML
10 lines
298 B
YAML
########################
|
|
# Checks there are no broken symlinks in the components folders
|
|
# Needed vars:
|
|
# - .Vars.root_dir (String)
|
|
########################
|
|
command:
|
|
check-broken-symlinks:
|
|
exec: if [ $(find {{ .Vars.root_dir }} -xtype l | wc -l) -gt 0 ]; then exit 1; fi
|
|
exit-status: 0
|