Files
runner-images/images/linux/scripts/installers/netlify.sh
Vladimir Safonkin 7b3bfbdf61 [Ubuntu] Remove docs logic from Ubuntu provisioner (#1603)
* Remove docs logic on Ubuntu

* Cleanup templates

* Fix oras-cli.sh

* Remove announcements.md
2020-09-17 14:15:31 +03:00

17 lines
428 B
Bash

#!/bin/bash
################################################################################
## File: netlify.sh
## Desc: Installs the Netlify CLI
################################################################################
# Install the Netlify CLI
npm i -g netlify-cli
# Validate the installation
echo "Validate the installation"
if ! command -v netlify; then
echo "Netlify CLI was not installed"
exit 1
fi