Suppress output of diff for pull-cv
This commit is contained in:
parent
2899dad225
commit
8db6f2106a
1 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue