11 lines
270 B
Bash
Executable File
11 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
#setup script to copy files from the circle demo into the oscillation damp package
|
|
|
|
script_location=$(pwd)
|
|
end_location=$(rospack find oscillation_ctrl)
|
|
cp ${script_location}/launch/* ${end_location}/launch
|
|
cp ${script_location}/src/* ${end_location}/src
|
|
|