Commit a00b3aa1 authored by Alexander Ross Melnick's avatar Alexander Ross Melnick
Browse files

Add back files that got lost

parent 27982a2f
Loading
Loading
Loading
Loading
+416 B

File added.

No diff preview for this file type.

+4.84 KiB

File added.

No diff preview for this file type.

+14 −0
Original line number Diff line number Diff line
#!/bin/bash

# Compiling Java program
echo "Compiling ScratchCrawler..."
javac ScratchCrawler.java

# Checking if compilation was successful
if [ $? -eq 0 ]; then
    echo "Compilation successful. Running ScratchCrawler with arguments: $@"
    java ScratchCrawler "$@"
else
    echo "Compilation failed."
    exit 1
fi