You've already forked linux-packaging-mono
Imported Upstream version 5.10.0.47
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
parent
88ff76fe28
commit
e46a49ecf1
@@ -13,7 +13,13 @@ for f in $source_files ; do
|
||||
'
|
||||
for f in `cat $f` ; do
|
||||
case $f in
|
||||
\#*) ;;
|
||||
\#*) ;;
|
||||
*)
|
||||
# some lines in .sources may contain quick syntax to exclude files i.e.:
|
||||
# ../dir/*.cs:File1.cs,File2.cs (include everything except File1.cs and File2.cs)
|
||||
# let's drop that ":files" suffix
|
||||
for line in `echo $f | cut -d \: -f 1` ; do
|
||||
echo $line
|
||||
done
|
||||
esac
|
||||
done
|
||||
|
Reference in New Issue
Block a user