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
cd /tmp
mkdir beep
cd beep
ino init -t blink
vim src/sketch.ino
Then <Leader> ac produces this output:
"sketch.ino" 15L, 182C written
Compiling... /tmp/beep/src/sketch.ino
No project found in this directory.
Failed.
I tried cd src and vimming it and <Leader> ac to the same effect. Am I missing something? Was there perhaps supposed to be a Makefile somewhere that gets generated in the ino init command?
$ ls -Rlh /tmp/beep
.:
total 0
drwxr-xr-x 2 bob bob 60 Sep 19 09:12 lib
drwxr-xr-x 2 bob bob 60 Sep 19 09:12 src
./lib:
total 0
./src:
total 4.0K
-rw-r--r-- 1 bob bob 182 Sep 19 09:19 sketch.ino
The text was updated successfully, but these errors were encountered:
Per the Ino quickstart guide, you have to be in the top level of the tree (where the src and lib directories are located. I've confirmed that the build command works from there.
Then
<Leader> ac
produces this output:I tried
cd src
and vimming it and<Leader> ac
to the same effect. Am I missing something? Was there perhaps supposed to be a Makefile somewhere that gets generated in theino init
command?The text was updated successfully, but these errors were encountered: