Skip to content

Commit

Permalink
change path in DEFAULT_COMMAND
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Jul 30, 2018
1 parent f94988e commit 1b6a1be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tcs",
"version": "0.11.4",
"version": "0.11.5",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion server/starter.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

exec("turtle");
exec("../turtle");

?>
2 changes: 1 addition & 1 deletion server/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = (0, 11, 4)
version = (0, 11, 5)
version_info = '.'.join(str(c) for c in version)
2 changes: 1 addition & 1 deletion turtle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

DEFAULT_COMMAND="sudo /usr/bin/python3 /home/pi/Turtle-Rover-Mission-Control/server/server.py"
DEFAULT_COMMAND="sudo /usr/bin/python3 ./server/server.py"
case "$1" in
-v) exec $DEFAULT_COMMAND "-v"
;;
Expand Down

0 comments on commit 1b6a1be

Please sign in to comment.