Skip to content

Instantly share code, notes, and snippets.

@AlecsFerra
Created February 10, 2026 10:08
Show Gist options
  • Select an option

  • Save AlecsFerra/9dfd8c2b3175ba0fcef21037d4c66fa7 to your computer and use it in GitHub Desktop.

Select an option

Save AlecsFerra/9dfd8c2b3175ba0fcef21037d4c66fa7 to your computer and use it in GitHub Desktop.
#! /usr/bin/env bash
DIRS=(
"liquid-prelude"
"liquid-parallel"
"liquid-vector"
"." # This must be the last entry
)
echo "Installing libraries globally..."
for dir in "${DIRS[@]}"; do
echo "Installing $dir"
cd "$dir"
cabal install --lib --force
cd -
done
echo "All done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment