Sha256: 972d6df50e5bc8409ade20291d690765a1d8419823e89f0bcd020cb9be38571b
Contents?: true
Size: 691 Bytes
Versions: 59
Compression:
Stored size: 691 Bytes
Contents
def removeapplet require 'fileutils' nametext = "%s" % [@a_removeapplet] begin # exception trapped block fileName = "installed/" + nametext + ".inf" count = 0 fd = File.open(fileName,"r") fd.each { |oneline| if count == 1 commandline = "rm -r " + oneline system( commandline+' > temp.output' ) end count = 1 } fd.close commandline = "rm " + fileName system(commandline) @removeapplettext = "applet files removed! - restart rwd to finish uninstalling" rescue @removeapplettext = "\n" + "error" end # exception rescue end
Version data entries
59 entries across 59 versions & 8 rubygems