mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-11-22 23:28:56 +03:00
18 lines
320 B
Bash
18 lines
320 B
Bash
#!/usr/bin/env bash
|
|
|
|
printf "post-clone.sh\n"
|
|
|
|
node -v
|
|
|
|
# please specify required Node.js version
|
|
NODE_VERSION=8.12.0
|
|
|
|
# workaround to override the v8 alias
|
|
npm config delete prefix
|
|
. ~/.bashrc
|
|
nvm install "$NODE_VERSION"
|
|
nvm alias node8 "$NODE_VERSION"
|
|
nvm alias default v8.12.0
|
|
node -v
|
|
|
|
printf "end of post-clone.sh\n" |