Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #46 from mlefoster/packaging-v2
Browse files Browse the repository at this point in the history
Add a "packages" zip and differentiate from the all-in-one zip.
  • Loading branch information
brianjmiller committed May 22, 2017
2 parents e51fa4f + 7e9a2d8 commit 37c0bb3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion make_prototype_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function make_zip() {
}

echo "Zipping all prototypes"
make_zip "${ROOT}" "${ROOT}/pkgs/TinCan_Prototypes.zip" .
make_zip "${ROOT}" "${ROOT}/pkgs/tincan_prototypes_allinone.zip" .

echo "Zipping Golf Example"
make_zip "${ROOT}/GolfExample_TCAPI" "${ROOT}/pkgs/GolfExample_TCAPI.zip" .
Expand All @@ -29,4 +29,9 @@ make_zip "${ROOT}/JsTetris_TCAPI" "${ROOT}/pkgs/JsTetris_TCAPI.zip" .
echo "Zipping Locator"
make_zip "${ROOT}/Locator_TCAPI" "${ROOT}/pkgs/Locator_TCAPI.zip" .

echo "Zipping all packages"
cd "${ROOT}/pkgs"
zip -q "${ROOT}/pkgs/tincan_prototypes_packages.zip" *_TCAPI.zip
cd -

echo "Done";

0 comments on commit 37c0bb3

Please sign in to comment.