-
-
Save dscape/1228941 to your computer and use it in GitHub Desktop.
Sensor updater
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sensor updater | |
# v0.1 | |
echo "==> Updating sensor-tracking" | |
cd sensor-tracking | |
git pull origin | |
cd .. | |
echo "==> Updating sensor-maps" | |
cd sensor-maps | |
git pull origin | |
cd .. | |
echo "==> Updating sensor-views" | |
cd sensor-views | |
git pull origin | |
cd .. | |
echo "==> Updating sensor_js_message_parsing" | |
cd sensor_js_message_parsing | |
git pull origin | |
cd .. | |
echo "==> Updating sensor-geo" | |
cd sensor-geo | |
git pull origin | |
cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment