Include the importer in the release again -- I accidentally stopped

about a month ago and noticed in #452
This commit is contained in:
Dustin Carlino 2021-01-13 10:52:07 -08:00
parent ff598f21a3
commit 38fa22d4b2
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ impl ShowFavorites {
batch.append(
GeomBatch::load_svg(ctx, "system/assets/tools/star.svg")
.centered_on(app.primary.map.get_b(b).polygon.center())
.color(RewriteColor::ChangeAll(Color::YELLOW)),
.color(RewriteColor::ChangeAll(Color::RED)),
);
}
}

View File

@ -39,7 +39,7 @@ cp release/$runner $output
mkdir $output/game
cp target/release/game${suffix} $output/game
for name in fifteen_min osm_viewer parking_mapper santa; do
for name in fifteen_min osm_viewer parking_mapper santa importer; do
cp target/release/${name}${suffix} $output;
done