#!/usr/bin/env bash | |
# Split apart LIB files | |
msg "Splitting existing LIB files." | |
$SCRIPT_DIR/liberty_rewrite.sh $INPUT_DIRECTORY $OUTPUT_DIRECTORY $TEMP_DIR ; RETCODE=$? | |
if [ "$RETCODE" -ne 0 ]; then | |
msg "Error: Failed to rewrite Liberty JSON files!?" | |
exit 1 | |
else | |
msg "Successfully rewrote Liberty JSON files." | |
fi |