Compare commits

...

3 Commits

Author SHA1 Message Date
Ouss4
e4e4cce696 tools/zipme.sh: Remove the option to exclude patterns based on the VCS'
"ignore" file.
2020-07-07 16:58:28 -07:00
Xiang Xiao
569477d36c board/sim: Don't ignore any files under src/etc/ folder
see the discussion here:
https://github.com/apache/incubator-nuttx/issues/1363
2020-07-07 16:56:48 -07:00
Gregory Nutt
8cb06171a3 Do not ignore .asm files that are tracked. 2020-07-07 16:56:48 -07:00
5 changed files with 8 additions and 1 deletions

2
arch/z80/src/ez80/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
!*.asm

2
arch/z80/src/z180/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
!*.asm

2
arch/z80/src/z80/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
!*.asm

View File

@@ -1 +1,2 @@
/etctmp*
!/etc/**

View File

@@ -129,7 +129,7 @@ for pat in ${EXCLPAT} ; do
TAR+=" --exclude=${pat}"
done
TAR+=" --exclude-vcs-ignores --exclude-vcs"
TAR+=" --exclude-vcs"
if [ $verbose != 0 ] ; then
TAR+=" -czvf"