Suppress output of diff for pull-cv

This commit is contained in:
flyingscorpio@arch-desktop 2021-03-20 22:15:39 +01:00
parent 2899dad225
commit 8db6f2106a

View file

@ -9,11 +9,11 @@ if [ "$VERBOSE" = true ]; then
fi
updated=false
diff ~/src/html-cv/out.html ./cv/index.html || updated=true
diff ~/src/html-cv/data/cv-photo ./cv/data/cv-photo || updated=true
diff ~/src/html-cv/data/internet-icon.png ./cv/data/internet-icon.png || updated=true
diff ~/src/html-cv/data/git-icon.png ./cv/data/git-icon.png || updated=true
diff -r ~/src/html-cv/css ./cv/css || updated=true
diff ~/src/html-cv/out.html ./cv/index.html 2>/dev/null || updated=true
diff ~/src/html-cv/data/cv-photo ./cv/data/cv-photo 2>/dev/null || updated=true
diff ~/src/html-cv/data/internet-icon.png ./cv/data/internet-icon.png 2>/dev/null || updated=true
diff ~/src/html-cv/data/git-icon.png ./cv/data/git-icon.png 2>/dev/null || updated=true
diff -r ~/src/html-cv/css ./cv/css 2>/dev/null || updated=true
cp ~/src/html-cv/out.html ./cv/index.html
cp ~/src/html-cv/data/cv-photo ./cv/data/cv-photo