add erlang to path
This commit is contained in:
parent
6e54a865ed
commit
8947110ac2
|
@ -1,2 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
export PATH:=$PWD/gleam:PATH
|
||||
export PATH=$PWD/bin:$PATH
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
gleam new project
|
||||
cat $1 > project/src/project.gleam
|
||||
cd project
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import gleam/io
|
||||
|
||||
pub fn main() {
|
||||
io.println("OK")
|
||||
}
|
||||
io.println("OK")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue