Skip to content
This repository was archived by the owner on Aug 27, 2018. It is now read-only.

Commit 0b147f1

Browse files
authored
Merge pull request #80 from myitcv/fix_gen_file_removal
Fix removal of generated files as part of tests
2 parents 4242302 + e73ed8e commit 0b147f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_scripts/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ do
1616
go install $i
1717
done
1818

19-
rm -f !(_vendor)/**/gen_*.go
19+
find -path ./_vendor -prune -o -name "gen_*.go" -exec rm '{}' \;
2020

2121
{
2222
pushd examples/sites/helloworld

0 commit comments

Comments
 (0)