Don't need C directory anymore

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2 3 years ago
parent f512eb5f67
commit 42659cda91
  1. 0
      C++/scripts/filelist
  2. 2
      C++/scripts/md5
  3. 7
      C/scripts/build.sh
  4. 20
      C/scripts/commit.sh
  5. 1
      utils/.updateDirectories
  6. 2
      utils/md5

@ -1,2 +1,2 @@
build.sh:fcbd8c14fe2a608d11166cf5aa7dba02 -
build.sh:50a30b43fe30f45d4b7776f1929f359e -
commit.sh:89783d2e6a165aa9612c79cfbd804a35 -

@ -1,7 +0,0 @@
#Compiles the entire program then runs it, producing an executable.
#C
printf "Running program...\n\n\n"
if gcc $(find . -type f -name "*.c") ${CUSTOM_PARAMS} -o ${PROJECT_NAME}; then
./${PROJECT_NAME} "$@"
fi
printf "\n\n"

@ -1,20 +0,0 @@
#Adds a commit message and pushes project to github repository.
#C
COMMIT_MESSAGE="$*"
FIRST_LINE=true
while IFS= read -r line
do
if [ "$FIRST_LINE" = true ]; then
COMMIT_MESSAGE+="
Co-authored-by: $line"
FIRST_LINE=false
else
COMMIT_MESSAGE+="
Co-authored-by: $line"
fi
done < utils/.coauthors
git add -u
git add *
git commit -m "$COMMIT_MESSAGE"
git push

@ -1,4 +1,5 @@
Java/
C/
C++/
scripts/
utils/

@ -1,4 +1,4 @@
define.sh:3ecab0dffe2adfb950f3eb7c7061b750 -
main.sh:4e6e9f0650ec790ce2c4364db94f0caa -
search.sh:30e1842e9a13452ea883bb6516d28e1c -
.updateDirectories:fa5e95db12be22ae8aed7ecbc560e38c -
.updateDirectories:971afb892e8280cb4c9ad43fb72a46a0 -

Loading…
Cancel
Save