Added build script
This commit is contained in:
parent
4d8fb92b57
commit
254c8ef35f
3 changed files with 37 additions and 20 deletions
17
build.sh
Executable file
17
build.sh
Executable file
|
@ -0,0 +1,17 @@
|
||||||
|
#!/bin/bash
|
||||||
|
BUILDFILES=("resume.tex","altacv.cls","README.md","build.sh","output.txt","resume.pdf")
|
||||||
|
echo "Building resume and deleting output.txt"
|
||||||
|
rm output.txt
|
||||||
|
echo "Building resume" | tee -a output.txt
|
||||||
|
echo -e "Generating resume PDF" | tee -a output.txt
|
||||||
|
pdflatex resume.tex -o resume.pdf > /dev/null
|
||||||
|
echo -e "Deleting build files" | tee -a output.txt
|
||||||
|
FILES=$(ls -r)
|
||||||
|
for file in $FILES
|
||||||
|
do
|
||||||
|
if [[ " ${BUILDFILES[*]} " != *"$file"* ]];
|
||||||
|
then
|
||||||
|
rm $file
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo -e "Done." | tee -a output.txt
|
Binary file not shown.
|
@ -189,26 +189,26 @@ Ambitious computer systems engineer graduate with a positive, proactive approach
|
||||||
\cvtag{C++}
|
\cvtag{C++}
|
||||||
\cvtag{OpenCV}
|
\cvtag{OpenCV}
|
||||||
|
|
||||||
\divider
|
%\divider
|
||||||
|
%
|
||||||
\cvevent{Orn}{Sample transitioner for live music}{April 2023 \github{mskorczak/orn}}{}
|
%\cvevent{Orn}{Sample transitioner for live music}{April 2023 \github{mskorczak/orn}}{}
|
||||||
|
%
|
||||||
\begin{itemize}
|
%\begin{itemize}
|
||||||
\item A sample transitioner for live music, built for transitioning music for Dungeons and Dragons campaigns.
|
% \item A sample transitioner for live music, built for transitioning music for Dungeons and Dragons campaigns.
|
||||||
\end{itemize}
|
%\end{itemize}
|
||||||
|
%
|
||||||
\cvtag{C++}
|
%\cvtag{C++}
|
||||||
|
%
|
||||||
\divider
|
%\divider
|
||||||
|
%
|
||||||
\cvevent{Pesterchum}{Instant Messaging Client/Server}{April 2023 \github{mskorczak/pesterchum}}{}
|
%\cvevent{Pesterchum}{Instant Messaging Client/Server}{April 2023 \github{mskorczak/pesterchum}}{}
|
||||||
|
%
|
||||||
\begin{itemize}
|
%\begin{itemize}
|
||||||
\item A Homestuck inspired instant messaging client/server combination.
|
% \item A Homestuck inspired instant messaging client/server combination.
|
||||||
\end{itemize}
|
%\end{itemize}
|
||||||
|
%
|
||||||
\cvtag{IRC}
|
%\cvtag{IRC}
|
||||||
|
%
|
||||||
\cvsection{Education}
|
\cvsection{Education}
|
||||||
|
|
||||||
\cvevent{University Of Essex}{B.Eng in Computer Systemts Engineering}{2019 -- 2022}{Essex, UK}
|
\cvevent{University Of Essex}{B.Eng in Computer Systemts Engineering}{2019 -- 2022}{Essex, UK}
|
Loading…
Reference in a new issue