You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
412 B
35 lines
412 B
![]()
3 years ago
|
#!/bin/bash
|
||
![]()
6 years ago
|
|
||
|
set -e
|
||
|
|
||
![]()
3 years ago
|
export PATH=$PATH_ADDITION:$PATH
|
||
|
|
||
|
GAL_PROMPT_PREFIX="\e[34m✡\e[m "
|
||
![]()
6 years ago
|
|
||
|
function type() {
|
||
|
printf $GAL_PROMPT_PREFIX
|
||
![]()
3 years ago
|
echo -n " "
|
||
|
echo $* | node .ci/type-letters.js
|
||
![]()
6 years ago
|
}
|
||
|
|
||
![]()
4 years ago
|
type 'eval "$(fnm env)"'
|
||
![]()
3 years ago
|
eval "$(fnm env)"
|
||
![]()
6 years ago
|
|
||
|
type 'fnm --version'
|
||
|
fnm --version
|
||
|
|
||
![]()
4 years ago
|
type 'cat .node-version'
|
||
|
cat .node-version
|
||
![]()
6 years ago
|
|
||
|
type 'fnm install'
|
||
|
fnm install
|
||
|
|
||
|
type 'fnm use'
|
||
|
fnm use
|
||
|
|
||
|
type 'node -v'
|
||
|
node -v
|
||
|
|
||
|
sleep 2
|
||
![]()
4 years ago
|
echo ""
|