aboutsummaryrefslogtreecommitdiff
path: root/posts/macos.md
diff options
context:
space:
mode:
authorbt <bt@btxx.org>2024-06-06 10:08:36 -0400
committerbt <bt@btxx.org>2024-06-06 10:08:36 -0400
commit8c47200dd81639b7cb1a3a165f4bb2eec2517970 (patch)
tree951c9a471b039f01ffb378c1c33f3798fa42e98a /posts/macos.md
parent1d280856feae01dc135cdbb28bfa681ad7d6a63e (diff)
Add new blog post, update walkthroughs, new step by step help on homepage
Diffstat (limited to 'posts/macos.md')
-rw-r--r--posts/macos.md17
1 files changed, 1 insertions, 16 deletions
diff --git a/posts/macos.md b/posts/macos.md
index 85f2630..4ecaaa8 100644
--- a/posts/macos.md
+++ b/posts/macos.md
@@ -4,28 +4,13 @@
The `barf` project was built on Linux and was catered towards Linux users. The core of the project will remain focused on Linux/GNU tools, but that doesn't mean MacOS needs to be left out in the cold.
-There are some very minor changes you'll need to make to your default `sed` and `date` paths if you plan to run barf on MacOS.
-
## Download Packages
This walkthrough assumes that you already have [homebrew](https://brew.sh/) installed on your machine.
You will need to install the GNU versions of both `date` and `sed` in order to avoid breaking things when `barf` tries to build.
-
brew install coreutils
brew install gnu-sed
-
-## Setting `gsed` and `gdate` as Default
-
-Now run the following in a terminal shell:
-
- sudo ln -fs /opt/homebrew/bin/gsed /usr/local/bin/sed
- sudo ln -fs /opt/homebrew/bin/gdate /usr/local/bin/date
-
-and add the following to your `.bash_profile` file:
-
- export PATH="/usr/local/bin:$PATH"
-
-Reload your `bash` instance and everything should work as intended!
+Now everything should work as intended!