Skip to content

Commit

Permalink
fix cleanup_css.sh error output when no css files present
Browse files Browse the repository at this point in the history
  • Loading branch information
megahirt committed Aug 31, 2017
1 parent b35bd3a commit 456596e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cleanup_css.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# delete untracked CSS files in the given paths
git ls-files --others src/{Site,angular-app}/**/*.css | xargs rm
git ls-files --others src/{Site,angular-app}/**/*.css | xargs --no-run-if-empty rm
# Remove empty bootstrap4 directories
find . -type d -empty -name bootstrap4 -delete

0 comments on commit 456596e

Please sign in to comment.