Skip to content

Commit ef7f671

Browse files
committed
remove head -n 3 command
1 parent adde35f commit ef7f671

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/generate_easystacks_for_existing_stack/stack_to_json.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [[ ! -d ${BASE_STACK} ]]; then
1111
exit 1
1212
fi
1313

14-
apps=$(find ${BASE_STACK} -mindepth 2 -maxdepth 2 -type d | head -n 3)
14+
apps=$(find ${BASE_STACK} -mindepth 2 -maxdepth 2 -type d)
1515

1616
json_output="["
1717
for app_dir in $apps; do

0 commit comments

Comments
 (0)