File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,13 @@ stdout: log.txt
74
74
baseCommand : [bash, -c]
75
75
arguments :
76
76
- |
77
- find . | sort
77
+ find . | grep -v '\ . docker' | sort
78
78
find /my_path | sort
79
79
find /my_other_path | sort
80
80
echo "a" > first_writable_file
81
81
echo "b" > /my_path/third_writable_file
82
82
touch fifth_writable_directory/c
83
83
touch /my_path/seventh_writable_directory/d
84
- find . | sort
84
+ find . | grep -v '\ . docker' | sort
85
85
find /my_path | sort
86
86
find /my_other_path | sort
Original file line number Diff line number Diff line change @@ -38,6 +38,6 @@ outputs:
38
38
baseCommand : [bash, -c]
39
39
arguments :
40
40
- |
41
- find .
41
+ find . | grep -v '\ . docker' | sort
42
42
echo "a" > first_writable_file
43
43
touch fifth_writable_directory/c
You can’t perform that action at this time.
0 commit comments