Remove proxying via torify
This network-level concern is not appropriate for this repository. When I originally added it, my thought was that I'd be helping to protect the privacy of people who cloned the repository. But that responsibility does not belong here. I don't need to proxy through Tor anymore through software, as I have since handled privacy-related networking concerns elsewhere (whether it be at the router or host OS level).master
parent
fcbc8f2689
commit
c5e3931450
|
@ -16,8 +16,7 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
# This will also download any necessary third-party files. Note that all
|
||||
# downloads are proxied over Tor (using `torify').
|
||||
# This will also download any necessary third-party files.
|
||||
##
|
||||
|
||||
set -euo pipefail
|
||||
|
@ -56,7 +55,7 @@ get-fonts()
|
|||
dest="$fontdir/$font"
|
||||
|
||||
test ! -f "$dest" || continue
|
||||
torify wget "$src" -O "$dest"
|
||||
wget "$src" -O "$dest"
|
||||
done
|
||||
|
||||
# Verify that we haven't been served bad files. This should only happen
|
||||
|
|
|
@ -22,8 +22,6 @@ declare -r remote_file=remote-list
|
|||
cat <<EOF
|
||||
### GENERATED BY gen-makefile ###
|
||||
|
||||
TORIFY="${TORIFY-torify}"
|
||||
|
||||
images := $( cut -d' ' -f1 "$remote_file" | tr '\n' ' ' )
|
||||
|
||||
.PHONY: all check clean
|
||||
|
@ -44,7 +42,7 @@ while read out url convert; do
|
|||
dest="$out"
|
||||
|
||||
echo "$dest":
|
||||
printf "\t\$(TORIFY) wget -O %q %q\n" "$dest" "$url"
|
||||
printf "\t\wget -O %q %q\n" "$dest" "$url"
|
||||
|
||||
test -n "$convert" || continue
|
||||
|
||||
|
|
Loading…
Reference in New Issue