Skip to content

Commit

Permalink
chore: small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tjmaynes committed Dec 28, 2023
1 parent a6ddea1 commit 9aed4bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -20,7 +20,7 @@ test: build performance

download_career_files:
chmod +x ./script/download-career-files.sh
./script/download-career-files.sh "public"
./script/download-career-files.sh "./public"

artifact: install build test download_career_files

Expand Down
2 changes: 1 addition & 1 deletion script/download-career-files.sh
Expand Up @@ -23,7 +23,7 @@ function main() {

FILES=(cv resume)
for file in "${FILES[@]}"; do
[[ ! -f "$TARGET_DIRECTORY/career/$file.pdf" ]] && download_career_file $file
[[ ! -f "$TARGET_DIRECTORY/career/$file.pdf" ]] && download_career_file "$file"
done
}

Expand Down

0 comments on commit 9aed4bd

Please sign in to comment.