Skip to content

Commit

Permalink
Fixed a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hickey committed Mar 10, 2021
1 parent 0844d39 commit 2325692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HostFilesUpdate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ update_file() {
curl --fail -o "${file}".$$ -s ${url} --user-agent "Pi-Star_${pistarCurVersion}"

# Look for prepend / append files
[[ -r ${LOCAL_FILE}/${file}-prepend ]] && prepend=${LOCAL_FILE}/${file}-prepend || prepend=''
[[ -r ${LOCAL_FILE}/${file}-append ]] && prepend=${LOCAL_FILE}/${file}-append || append=''
[[ -r ${LOCAL_DIR}/${file}-prepend ]] && prepend=${LOCAL_DIR}/${file}-prepend || prepend=''
[[ -r ${LOCAL_DIR}/${file}-append ]] && append=${LOCAL_DIR}/${file}-append || append=''

# create the DIST_DIR file
cat ${prepend} ${file}.$$ ${append} > ${DIST_DIR}/${file}
Expand Down

0 comments on commit 2325692

Please sign in to comment.