mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
ad9c3d730c
For full instructions/notes see Tools/vagrant/README.md Notes: * Old Vagrantfile updated to run faster and self init with our various build dependancies. * The sim_vehicle.sh script will now implicitly configure if necessary * run_in_terminal_window.sh is now smart enough to use Screen sessions. Or if those are not available to warn the user but run the command with logging going to a file in /tmp.
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This is a helper script for run_in_terminal_window.sh. I'm not sure why Ardupilot.elf exits if not run from inside of a script
|
|
echo running $*
|
|
( $* )
|
|
echo cmd exited
|