Sha256: 3babf05e797408c4bf700ec3a9997fede0aa2173878d8c7e926937099cb5f7d2
Contents?: true
Size: 916 Bytes
Versions: 25
Compression:
Stored size: 916 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')
Version data entries
25 entries across 25 versions & 1 rubygems