Sha256: 015d568fa1ca5af401cbe6d156b90cdfbf0936ba6c99ff8ab2ae88ac838157e8
Contents?: true
Size: 979 Bytes
Versions: 39
Compression:
Stored size: 979 Bytes
Contents
#!/usr/bin/env ruby # encoding: ascii-8bit # Copyright 2014 Ball Aerospace & Technologies Corp. # All Rights Reserved. # # This program is free software; you can modify and/or redistribute it # under the terms of the GNU General Public License # as published by the Free Software Foundation; version 3 with # attribution addendums as found in the LICENSE.txt require 'fileutils' require_relative 'autohotkey.rb' # Clean up telemetry viewer marshall files Dir['autohotkey/outputs/tmp/tlmviewer*'].each {|file| File.delete file } autohotkey('TlmViewer', 'tlm_viewer.ahk') do require 'cosmos/tools/tlm_viewer/tlm_viewer' Cosmos::TlmViewer.run end # Clean up telemetry viewer saved config File.delete('autohotkey/config/tools/tlm_viewer/test.txt') # Clean up telemetry viewer generated screens FileUtils.rm_r('autohotkey/config/targets/COSMOS/screens') FileUtils.rm_r('autohotkey/config/targets/META/screens') File.delete('autohotkey/config/targets/INST/screens/extra.txt')
Version data entries
39 entries across 39 versions & 1 rubygems