Skip to content

Commit

Permalink
Supress tar extraction warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cvbarros committed Apr 5, 2020
1 parent 23739ef commit 029d5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ci: test ## Run all the CI targets

.PHONY: start-docker
start-docker: ## Starts up docker container running TeamCity Server
@test -d $(TEAMCITY_DATA_DIR) || tar xfz $(INTEGRATION_TEST_DIR)/teamcity_data.tar.gz -C $(INTEGRATION_TEST_DIR)
@test -d $(TEAMCITY_DATA_DIR) || tar --warning=no-unknown-keyword -xfz $(INTEGRATION_TEST_DIR)/teamcity_data.tar.gz -C $(INTEGRATION_TEST_DIR)
@curl -sL https://download.octopusdeploy.com/octopus-teamcity/4.42.1/Octopus.TeamCity.zip -o $(TEAMCITY_DATA_DIR)/plugins/Octopus.TeamCity.zip
@test -n "$$(docker ps -q -f name=$(CONTAINER_NAME))" || docker run --rm -d \
--name $(CONTAINER_NAME) \
Expand Down

0 comments on commit 029d5a9

Please sign in to comment.