Skip to content

Commit

Permalink
Allow overwrite of tap metadata
Browse files Browse the repository at this point in the history
It seems to be possible for a datalinker container to get in a state where it is trying to start up, but fails because it is trying to download TAP metadata for a second time and unzip interactively prompts to overwrite.  Add the allow-overwrite flag so it can get past this state.
  • Loading branch information
dhirving committed Jan 25, 2024
1 parent ac62714 commit 23b44dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start-frontend.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ -n "$DATALINKER_TAP_METADATA_URL" ]; then
exit 1
fi
curl -L "$DATALINKER_TAP_METADATA_URL" -o /tmp/datalink-columns.zip
unzip /tmp/datalink-columns.zip -d "$DATALINKER_TAP_METADATA_DIR"
unzip -o /tmp/datalink-columns.zip -d "$DATALINKER_TAP_METADATA_DIR"
fi

rm -rf /tmp/secrets
Expand Down

0 comments on commit 23b44dc

Please sign in to comment.