From 210071443b7eef5aef2a912918ab5c4f58c6d36c Mon Sep 17 00:00:00 2001 From: Paul Brown <67805647+pb-dod@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:13:41 -0500 Subject: [PATCH] CLOUD-2283: Add missing EDITOR env var to 00_env.sh (#66) After this change we're no longer setting EDITOR in 00_env.sh: https://github.com/ConsultingMD/homebrew-ih-public/pull/65/ This PR fixes the issue by adding it back. --- VERSION | 2 +- formula/ih-core.rb | 2 +- lib/core/shell/step.sh | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 50140e3..9dd1793 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.33 +0.1.34 diff --git a/formula/ih-core.rb b/formula/ih-core.rb index 938c327..3bbd22f 100644 --- a/formula/ih-core.rb +++ b/formula/ih-core.rb @@ -1,5 +1,5 @@ class IhCore < Formula - VERSION="0.1.33" + VERSION="0.1.34" desc "Brew formula for installing core tools used at Included Health engineering." homepage "https://github.com/ConsultingMD/homebrew-ih-public" license "CC BY-NC-ND 4.0" diff --git a/lib/core/shell/step.sh b/lib/core/shell/step.sh index 621a247..8c1a682 100644 --- a/lib/core/shell/step.sh +++ b/lib/core/shell/step.sh @@ -232,6 +232,7 @@ function ih::setup::core.shell::private::configure-profile() { # This file will not be updated when you update the ih-core brew formula. +export EDITOR="$EDITOR" # Directory where you want to clone Legacy Grand Rounds repos, # which are currently located in the ConsultingMD org. export IH_HOME="$IH_HOME"