aboutsummaryrefslogtreecommitdiffstats
path: root/test/scripts/git_pull_or_clean.sh
blob: b119a9ccb6014bb5c2e9bd4b6ef5fffadf48b1db (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
CMD='git clean -dfX */'

if git pull | grep -v 'Already up-to-date.'
then
  echo "Executing $CMD"
  $CMD
fi