Skip to content

Instantly share code, notes, and snippets.

@sjeandeaux
Last active March 17, 2016 07:37
Show Gist options
  • Save sjeandeaux/49fb286ed19cceb9ca8d to your computer and use it in GitHub Desktop.
Save sjeandeaux/49fb286ed19cceb9ca8d to your computer and use it in GitHub Desktop.
Clear ivy dependencies
#!/bin/bash
if [[ $2 == "rm" ]]
then
echo "RM"
find ~/.ivy2/ -type f -name "$1*" -exec rm -rvf {} \;
else
find ~/.ivy2/ -type f -name "$1*"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment