Update scripts

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
Nic0Nic0Nii 3 years ago
parent d3dcd9cbdb
commit 6274ddb503
  1. 6
      scripts/commit.sh
  2. 2
      scripts/jar.sh
  3. 4
      scripts/md5
  4. 2
      utils/md5
  5. 2
      utils/search.sh

@ -3,9 +3,15 @@
COMMIT_MESSAGE="$*" COMMIT_MESSAGE="$*"
while IFS= read -r line while IFS= read -r line
do do
if [ "$FIRST_LINE" = true ]; then
COMMIT_MESSAGE+=" COMMIT_MESSAGE+="
Co-authored-by: $line" Co-authored-by: $line"
FIRST_LINE=false
else
COMMIT_MESSAGE+="
Co-authored-by: $line"
fi
done < utils/.coauthors done < utils/.coauthors
git add -u git add -u
git add * git add *

@ -10,7 +10,7 @@ ORIGINAL_LOC=$(pwd)
cd ${OUT_DIR} cd ${OUT_DIR}
jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig jar cfm ${PROJECT_NAME}.jar ${ORIGINAL_LOC}/manifest sig
printf "\n\n\nRunning Program...\n\n" printf "\n\n\nRunning Program...\n\n"
java -jar ${PROJECT_NAME}.jar java -jar ${PROJECT_NAME}.jar "$@"
mv ${PROJECT_NAME}.jar ${ORIGINAL_LOC} mv ${PROJECT_NAME}.jar ${ORIGINAL_LOC}
cd .. cd ..
./scripts/clean.sh ./scripts/clean.sh

@ -1,5 +1,5 @@
build.sh:a833e7598ad65672a9c01306d244b49f - build.sh:a833e7598ad65672a9c01306d244b49f -
clean.sh:96ce35f2d2dcb555421e00a6afda23ca - clean.sh:96ce35f2d2dcb555421e00a6afda23ca -
commit.sh:21af1fa6f09d01679c9e11408967264a - commit.sh:b186d649fa17c68926fe1caec4a7216c -
jar.sh:2ac636f584c43a1124affb9ea6bdc7bf - jar.sh:62ce62bbb97d3f3856bcc9b0ad34083c -
lean.sh:3be7b8b182ccd96e48989b4e57311193 - lean.sh:3be7b8b182ccd96e48989b4e57311193 -

@ -1,5 +1,5 @@
.coauthors:3785ad38663e5fc43e574914ad067294 - .coauthors:3785ad38663e5fc43e574914ad067294 -
define.sh:d6b20a25a04a60d94f466e48fa60ac69 - define.sh:d6b20a25a04a60d94f466e48fa60ac69 -
main.sh:32a1f953ffca8584d1eb57c0ecd8a582 - main.sh:32a1f953ffca8584d1eb57c0ecd8a582 -
search.sh:28d0ede8345514d80cc68cc756870002 - search.sh:6eec52214a36f2114442c41ab9c04f72 -
.updateDirectories:0ede00461e947494545e694040787b3f - .updateDirectories:0ede00461e947494545e694040787b3f -

@ -37,6 +37,7 @@ function check() {
if [ "$g" != "md5" ]; then if [ "$g" != "md5" ]; then
if [ -f $1$g ]; if [ -f $1$g ];
then then
if [ "$g" != ".coauthors" ]; then
echo "++Redownload $1$g..." echo "++Redownload $1$g..."
if [ -f "$1$g" ]; then if [ -f "$1$g" ]; then
#Read the 2nd line and see if it has a special directory. #Read the 2nd line and see if it has a special directory.
@ -58,6 +59,7 @@ function check() {
echo "===Could not find directory, assuming regular scripts directory exists." echo "===Could not find directory, assuming regular scripts directory exists."
curl -H 'Cache-Control: no-cache, no-store' https://raw.githubusercontent.com/sigonasr2/SigScript/main/$1$g --output scripts/$g curl -H 'Cache-Control: no-cache, no-store' https://raw.githubusercontent.com/sigonasr2/SigScript/main/$1$g --output scripts/$g
fi fi
fi
else else
echo "++==Downloading $1$g..." echo "++==Downloading $1$g..."
curl -H 'Cache-Control: no-cache, no-store' https://raw.githubusercontent.com/sigonasr2/SigScript/main/$1$g --output $1$g curl -H 'Cache-Control: no-cache, no-store' https://raw.githubusercontent.com/sigonasr2/SigScript/main/$1$g --output $1$g

Loading…
Cancel
Save