Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
##############################################################################
# This script output what paths have changed using a SHA Range
#
# Example usage:
#
# Author: Earle Nietzel
# Date: 8/21/2019
# License: http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
##############################################################################
@ern
ern / clean-code.sh
Created April 1, 2019 18:03
Sakai Tomcat Scripts
#!/usr/local/bin/zsh
source bin/common.sh
if [ -n "$(ls -A $COMPONENTS)" ]; then
echo "Removing $COMPONENTS"
rm -rf $COMPONENTS/*
fi
if [ -n "$(ls -A $LIB)" ]; then