Skip to content

Commit a88329f

Browse files
committed
Prevent copying sample code.
1 parent 0d6db4a commit a88329f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ copy: ## Copy files from project to UnityPackage
2222
cp screenshot.png ./UnityPackage/
2323

2424
rcopy: ## Copy files from UnityPackage back to project
25-
(cd UnityPackage && find . -type f -name "*.cs" -not -path '*/Editor/*' -exec cp {} ../RhythmGameUtilities/{} \;)
25+
(cd UnityPackage && find . -type f -name "*.cs" -not -path '*/Editor/*' -not -path '*/Samples~/*' -exec cp {} ../RhythmGameUtilities/{} \;)
2626

2727
clean: ## Clean project
2828
git clean -xdf

0 commit comments

Comments
 (0)