2011-01-18 19:08:49 -05:00
|
|
|
######################################################################
|
|
|
|
# This file is imported from the rubygems project.
|
|
|
|
# DO NOT make modifications in this repo. They _will_ be reverted!
|
|
|
|
# File a patch instead and assign it to Ryan Davis or Eric Hodel.
|
|
|
|
######################################################################
|
|
|
|
|
2010-04-22 04:24:42 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2008-03-31 18:40:06 -04:00
|
|
|
#--
|
2010-04-22 04:24:42 -04:00
|
|
|
# Copyright (C) 2004 Mauricio Julio Fernández Pradier
|
|
|
|
# See LICENSE.txt for additional licensing information.
|
|
|
|
#++
|
2008-03-31 18:40:06 -04:00
|
|
|
|
|
|
|
module Gem::Package::FSyncDir
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
##
|
|
|
|
# make sure this hits the disc
|
|
|
|
|
|
|
|
def fsync_dir(dirname)
|
|
|
|
dir = open dirname, 'r'
|
|
|
|
dir.fsync
|
|
|
|
rescue # ignore IOError if it's an unpatched (old) Ruby
|
|
|
|
ensure
|
|
|
|
dir.close if dir rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|