From 0b946ac3eb291a17bfc5781d747ef1d7f3feca68 Mon Sep 17 00:00:00 2001 From: Camden Cheek Date: Tue, 14 Jul 2020 16:01:05 -0400 Subject: [PATCH] Add carbon to path during unix installs --- CHANGELOG.md | 4 ++++ scripts/unix-install.sh | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a8374a34..1a3268a34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased +### Added +- Link `carbon` into `/usr/local/bin` so it's available on most users' `PATH` ([PR28](https://github.com/observIQ/carbon/pull/28)) + ## [0.9.1] - 2020-07-13 ### Added - More specific warning and error messages for common configuration issues ([PR12](https://github.com/observIQ/carbon/pull/12),[PR13](https://github.com/observIQ/carbon/pull/13),[PR14](https://github.com/observIQ/carbon/pull/14)) diff --git a/scripts/unix-install.sh b/scripts/unix-install.sh index 1d8437c72..a2ed05fb8 100755 --- a/scripts/unix-install.sh +++ b/scripts/unix-install.sh @@ -415,6 +415,7 @@ install_package() info "Setting permissions..." chmod +x "$agent_binary" + ln -s "$agent_binary" "/usr/local/bin/$BINARY_NAME" succeeded success "Carbon installation complete!"