Skip to content

Instantly share code, notes, and snippets.

@carlogilmar
Created June 23, 2020 20:16
Show Gist options
  • Save carlogilmar/d184765d806fef46e4ec30f2220aec33 to your computer and use it in GitHub Desktop.
Save carlogilmar/d184765d806fef46e4ec30f2220aec33 to your computer and use it in GitHub Desktop.
Script to check deps in Elixir Umbrella App
#! /bin/bash
for app in apps/* ; do
cd $app
mix hex.outdated
cd -
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment