Skip to content

Commit

Permalink
chore: bump exiftool version
Browse files Browse the repository at this point in the history
  • Loading branch information
LordNoteworthy committed Sep 3, 2022
1 parent fe4f37e commit 9cb69d5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/docker/Dockerfile.meta
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN echo "Installing TRiD..." \
&& mv triddefs.trd /usr/bin/

####### Installing Exiftool #######
ENV EXIF_VER 12.42
ENV EXIF_VER 12.44
RUN echo "Installing Exiftool..." \
&& wget https://exiftool.org/Image-ExifTool-$EXIF_VER.tar.gz \
&& gzip -dc Image-ExifTool-$EXIF_VER.tar.gz | tar -xf - \
Expand Down
6 changes: 3 additions & 3 deletions build/mk/exiftool.mk
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
EXIF_VER = 12.41
EXIF_VER = 12.44
exiftool-install: # Install ExifTool
sudo apt-get -qq update
wget https://exiftool.org/Image-ExifTool-$(EXIF_VER).tar.gz
gzip -dc Image-ExifTool-$(EXIF_VER).tar.gz | tar -xf -
cd Image-ExifTool-$(EXIF_VER) \
&& perl Makefile.PL \
&& make test \
&& sudo make install
cd Image-ExifTool-$(EXIF_VER) && sudo cp -r exiftool lib /usr/local/bin
rm Image-ExifTool-$(EXIF_VER).tar.gz
rm -r Image-ExifTool-$(EXIF_VER)
rm -rf Image-ExifTool-$(EXIF_VER)
1 change: 1 addition & 0 deletions build/mk/trid.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ trid-install: ## Install TRiD
sudo mv /tmp/trid /usr/bin/
sudo mv /tmp/triddefs.trd /usr/bin/
chmod +x /usr/bin/trid
## export LC_ALL=C
2 changes: 1 addition & 1 deletion services/aggregator/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type Service struct {
db store.DB
}

// New create a new PE scanner service.
// New create a new aggregator scanner service.
func New(cfg Config, logger log.Logger) (Service, error) {

svc := Service{}
Expand Down

0 comments on commit 9cb69d5

Please sign in to comment.