From 0e0cf39241988739823294615f91de5980d11570 Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Wed, 31 Aug 2022 17:20:07 -0500 Subject: [PATCH] cleanup crate --- Cargo.toml | 3 +++ comp.sh | 13 ------------- 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 comp.sh diff --git a/Cargo.toml b/Cargo.toml index 903ac28..a399e55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,9 @@ name = "rxing" version = "0.1.0" edition = "2021" +exclude = [ + "test_resources/*", +] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/comp.sh b/comp.sh deleted file mode 100644 index 1776ff4..0000000 --- a/comp.sh +++ /dev/null @@ -1,13 +0,0 @@ -IN_DIR=$1 -OUT_FILE=$2 -COUNT=0 -echo "Writing from '${IN_DIR}' to '${OUT_FILE}'" -for fn in $(ls -p ${IN_DIR} | grep -v /) -do - echo "Found file ${IN_DIR}/${fn}" - echo "Adding contents of ${fn} to ${OUT_FILE}" - ECHO "// NEW FILE: ${fn}" >> ${OUT_FILE} - cat ${IN_DIR}/${fn} >> ${OUT_FILE} - COUNT=$((COUNT + 1)) -done; -echo "Done compiling ${COUNT} files from ${IN_DIR} to ${OUT_FILE}" \ No newline at end of file