Skip to content

Commit f599e66

Browse files
committed
ignore .nfs.* files
1 parent f5ff4bd commit f599e66

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.*.sw[pon]
22
coverage
33
pkg
4+
.nfs.*

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include Config
1818
MAKE = ENV['MAKE'] || %w[gmake make].find { |c| system(c, '-v') }
1919
PKG_NAME = 'json'
2020
PKG_VERSION = File.read('VERSION').chomp
21-
PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile/).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/)
21+
PKG_FILES = FileList["**/*"].exclude(/CVS|pkg|tmp|coverage|Makefile|\.nfs\./).exclude(/\.(so|bundle|o|#{CONFIG['DLEXT']})$/)
2222
EXT_ROOT_DIR = 'ext/json/ext'
2323
EXT_PARSER_DIR = "#{EXT_ROOT_DIR}/parser"
2424
EXT_PARSER_DL = "#{EXT_ROOT_DIR}/parser.#{CONFIG['DLEXT']}"

0 commit comments

Comments
 (0)