projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96d5d19
)
(no commit message)
author
mePy2
<mePy2@web>
Sun, 27 Sep 2020 15:18:25 +0000
(16:18 +0100)
committer
IkiWiki
<ikiwiki.info>
Sun, 27 Sep 2020 15:18:25 +0000
(16:18 +0100)
HDL_workflow/blahblah.mdwn
[new file with mode: 0644]
patch
|
blob
diff --git a/HDL_workflow/blahblah.mdwn
b/HDL_workflow/blahblah.mdwn
new file mode 100644
(file)
index 0000000..
138fb51
--- /dev/null
+++ b/
HDL_workflow/blahblah.mdwn
@@ -0,0
+1,19
@@
+If you get this:
+```
+#!/bin/bash
+cd "CircuitVerse-master folder"
+npm install
+```
+[...]
+```
+npm run build
+```
+I get: `npm ERR! missing script: build`
+
+Well... run it in the correct folder! ("cv-frontend-master") :)
+```
+#!/bin/bash
+cd cv-frontend-master
+npm install
+npm run build
+```