Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
fix broken test job - jar URLs are now returning redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
eli-darkly committed Oct 3, 2019
1 parent 64b9696 commit da4dde5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging-test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ $(TEMP_DIR)/dependencies-internal: $(TEMP_DIR)/dependencies-all
rm $@/gson*.jar $@/slf4j*.jar

$(SLF4J_SIMPLE_JAR): | $(TEMP_DIR)
curl $(SLF4J_SIMPLE_JAR_URL) >$@
curl -f -L $(SLF4J_SIMPLE_JAR_URL) >$@

$(FELIX_JAR): | $(TEMP_DIR)
curl $(FELIX_ARCHIVE_URL) >$(TEMP_DIR)/$(FELIX_ARCHIVE)
curl -f -L $(FELIX_ARCHIVE_URL) >$(TEMP_DIR)/$(FELIX_ARCHIVE)
cd $(TEMP_DIR) && tar xfz $(FELIX_ARCHIVE) && rm $(FELIX_ARCHIVE)
cd $(TEMP_DIR) && mv `ls -d felix*` felix

Expand Down

0 comments on commit da4dde5

Please sign in to comment.