@@ -127,27 +127,27 @@ pub async fn get_proof_of_concept_save() -> anyhow::Result<PathBuf> {
127
127
. context ( "failed to create .hyperion" ) ?;
128
128
}
129
129
130
- let new_york_dir = hyperion. join ( "ProofOfConcept " ) ;
130
+ let new_york_dir = hyperion. join ( "NewYork " ) ;
131
131
132
132
if new_york_dir. exists ( ) {
133
- info ! ( "using cached ProofOfConcept load" ) ;
133
+ info ! ( "using cached NewYork load" ) ;
134
134
} else {
135
135
// download
136
- info ! ( "downloading ProofOfConcept .tar.gz" ) ;
136
+ info ! ( "downloading NewYork .tar.gz" ) ;
137
137
138
- // https://github.com/andrewgazelka/maps/raw/main/ProofOfConcept .tar.gz
139
- let url = "https://github.com/andrewgazelka/maps/raw/main/ProofOfConcept .tar.gz" ;
138
+ // https://github.com/andrewgazelka/maps/raw/main/NewYork .tar.gz
139
+ let url = "https://github.com/andrewgazelka/maps/raw/main/NewYork .tar.gz" ;
140
140
141
141
let response = reqwest:: get ( url)
142
142
. await
143
- . context ( "failed to get ProofOfConcept .tar.gz" ) ?;
143
+ . context ( "failed to get NewYork .tar.gz" ) ?;
144
144
145
145
let bytes = response
146
146
. bytes ( )
147
147
. await
148
148
. context ( "failed to get response bytes" ) ?;
149
149
150
- info ! ( "extracting ProofOfConcept .tar.gz" ) ;
150
+ info ! ( "extracting NewYork .tar.gz" ) ;
151
151
152
152
let decompressed = GzDecoder :: new ( bytes. as_ref ( ) ) ;
153
153
@@ -156,7 +156,7 @@ pub async fn get_proof_of_concept_save() -> anyhow::Result<PathBuf> {
156
156
157
157
archive
158
158
. unpack ( & hyperion)
159
- . context ( "failed to unpack ProofOfConcept .tar.gz" ) ?;
159
+ . context ( "failed to unpack NewYork .tar.gz" ) ?;
160
160
}
161
161
162
162
Ok ( new_york_dir)
0 commit comments