From 3a0a21d16d8adb9b17ff5a123521e1c8265635d6 Mon Sep 17 00:00:00 2001 From: Sameer Al-Sakran <sameer@expa.com> Date: Mon, 12 Sep 2016 19:09:42 -0700 Subject: [PATCH] [skip ci] this seems to clean things up --- docs/developers-guide-osx.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/developers-guide-osx.md b/docs/developers-guide-osx.md index a3de8e460dc..841f88d562a 100644 --- a/docs/developers-guide-osx.md +++ b/docs/developers-guide-osx.md @@ -10,19 +10,19 @@ NOTE: These instructions are only for packaging a built Metabase uberjar into `M 3. Update Perl. I'm not sure these steps are actually needed, so feel free to try skipping it and come back to it if it fails: -```bash - # Upgrade Perl - brew install perl - - # Add new version of perl to your $PATH - # (replace "5.24.0_1" below with whatever version you installed) - echo 'export PATH="/usr/local/Cellar/perl/5.24.0_1/bin:$PATH"' >> ~/.bash_profile - source ~/.bash_profile - - # Double-check that we're using the newer version of CPAN - # (If this is your first time running CPAN, use the default config settings when prompted) - cpan --version # You should see a line like "running under Perl version 5.24.0." -``` + ```bash + # Upgrade Perl + brew install perl + + # Add new version of perl to your $PATH + # (replace "5.24.0_1" below with whatever version you installed) + echo 'export PATH="/usr/local/Cellar/perl/5.24.0_1/bin:$PATH"' >> ~/.bash_profile + source ~/.bash_profile + + # Double-check that we're using the newer version of CPAN + # (If this is your first time running CPAN, use the default config settings when prompted) + cpan --version # You should see a line like "running under Perl version 5.24.0." + ``` 4. Next, you'll need to run the following commands before building the app: -- GitLab