From fe13076276a28482af0a6d0a8b2eacd920b33a54 Mon Sep 17 00:00:00 2001 From: Judson Dunaway-Barlow Date: Thu, 15 Aug 2019 16:50:53 -0400 Subject: [PATCH 1/2] Adding .idea/ to gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index fe9b335..07deeaf 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,5 @@ Session.vim # auto-generated tag files tags - +#intellij +.idea/ \ No newline at end of file From caec3f5c505720b0d214c49d0ebf4abd5e05b729 Mon Sep 17 00:00:00 2001 From: Judson Dunaway-Barlow Date: Thu, 15 Aug 2019 16:52:27 -0400 Subject: [PATCH 2/2] Fix: Removing a line that now causes errors in CircleCI -- i.e. creating the /bin directory --- .circleci/example.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.circleci/example.yml b/.circleci/example.yml index e0af599..64f4e7c 100644 --- a/.circleci/example.yml +++ b/.circleci/example.yml @@ -64,7 +64,6 @@ install_goss: &install_goss name: Install goss command: | # rather than give internet scripts SU rights, we install to local user bin and add to path - mkdir ~/bin export GOSS_DST=~/bin export PATH=$PATH:~/bin curl -fsSL https://goss.rocks/install | sh