mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 18:21:15 +00:00
9 lines
394 B
Bash
Executable File
9 lines
394 B
Bash
Executable File
#!/bin/bash
|
|
test -d ~/Maps_Backup || mkdir -p ~/Maps_Backup
|
|
cp -r software/ros_packages/ground_station/src/Resources/Maps/* ~/Maps_Backup
|
|
git reset --hard
|
|
git clean -fdx
|
|
git pull
|
|
test -d ~/software/ros_packages/ground_station/src/Resources/Maps || mkdir -p software/ros_packages/ground_station/src/Resources/Maps
|
|
cp -r ~/Maps_Backup/* software/ros_packages/ground_station/src/Resources/Maps/
|