diff --git a/README.md b/README.md index 393c7be..173e0e1 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ The `content ID` and `XID` are used to link the iTunes Extras to the movie file. #### Step 2: Tagging your Extras -Open the `data.json` file and edit it in the following ways: +Open the `data.json` file and edit it as follows: - Add the movie's metadata to the `"meta"` part of the file. This may include the movie's `"title"`, `"artist"`, `"description"`, `"longDescription"`, `"genre"`, `"releaseDate"`, `"year"`, `"studio"` and `"sort-name"`. - Change the `"XID"` to the XID you previously assigned to the movie file. diff --git a/compile.sh b/compile.sh index f79ab19..57c2a72 100755 --- a/compile.sh +++ b/compile.sh @@ -14,9 +14,10 @@ mkdir -p "${TARGET_DIR}" cp -R TuneKit/ "${TARGET_DIR}/TuneKit/" +echo -n "Compiling Code..." + for file in $(find ${SOURCE_ROOT} -type f) do - echo -n "Compiling $file..." dir=$(dirname "$file") filename=$(basename "$file") extension="${filename##*.}" @@ -24,9 +25,6 @@ do filename="${filename%.*}" # For double extensions if [[ $filename == _* ]]; then - echo -en "\033[0;33m" - echo " Skipping" - echo -en "\033[0;00m" continue fi @@ -55,13 +53,14 @@ do cp "$file" "${partialTarget}.${extension}" ;; esac - echo -en "\033[0;92m" - echo " Done" - echo -en "\033[0;00m" done +echo -en "\033[0;92m" +echo " Done" +echo -en "\033[0;00m" + echo -n "Copying Assets... " cp -R assets/ "${TARGET_DIR}/" echo -en "\033[0;92m" echo " Done" -echo -en "\033[0;00m" \ No newline at end of file +echo -en "\033[0;00m"