You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fresh clone of frobomind and frobit_demo on Netrunner 14.2 (Ubuntu 14.04 derivative). $ cd <catkin_workspace>/src $ frobomind/frobomind_make -i /frobit_demo
Produces frobomind/frobomind_make: command substitution: line 143: syntax error near unexpected expression ")" frobomind/frobomind_make: command substitution: line 143: 'echo $APP | cut -c1-1)' No proper application defined: /frobit_demo
cut is version 8.21
I don't think the ")" is supposed to be in the cut expression on line 143 of frobomind_make.
However, this script did work for me before reinstallation of linux.
As far as I understand, the line command echo $APP | cut -c1-1) is supposed to produce a "/" for frobomind applications. However, it only works for me if I remove the parenthesis echo $APP | cut -c1-1.
The text was updated successfully, but these errors were encountered:
Fresh clone of frobomind and frobit_demo on Netrunner 14.2 (Ubuntu 14.04 derivative).
$ cd <catkin_workspace>/src
$ frobomind/frobomind_make -i /frobit_demo
Produces
frobomind/frobomind_make: command substitution: line 143: syntax error near unexpected expression ")"
frobomind/frobomind_make: command substitution: line 143: 'echo $APP | cut -c1-1)'
No proper application defined: /frobit_demo
cut is version 8.21
I don't think the ")" is supposed to be in the cut expression on line 143 of frobomind_make.
However, this script did work for me before reinstallation of linux.
As far as I understand, the line command
echo $APP | cut -c1-1)
is supposed to produce a "/" for frobomind applications. However, it only works for me if I remove the parenthesisecho $APP | cut -c1-1
.The text was updated successfully, but these errors were encountered: