2020-10-07 13:49:40 +05:00
|
|
|
#!/bin/bash -e
|
2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
2020-06-11 17:50:59 +04:00
|
|
|
## File: vercel.sh
|
|
|
|
|
## Desc: Installs the Vercel CLI
|
2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
|
2020-06-11 17:50:59 +04:00
|
|
|
# Install the Vercel CLI
|
2020-05-28 17:18:02 +04:00
|
|
|
npm i -g vercel
|
2019-12-13 09:48:00 -05:00
|
|
|
|
2020-06-11 17:50:59 +04:00
|
|
|
echo "Creating the symlink for [now] command to vercel CLI"
|
2020-05-28 17:18:02 +04:00
|
|
|
ln -s /usr/local/bin/vercel /usr/local/bin/now
|
|
|
|
|
|
2020-12-21 23:35:22 +03:00
|
|
|
invoke_tests "CLI.Tools" "Vercel CLI"
|