From 4b4d4477c0abc6368216f3f163a8d8aacfe850ae Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Tue, 15 Sep 2020 20:25:43 -0400 Subject: [PATCH] copy license file to distribution zip --- bin/build_dist | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/build_dist b/bin/build_dist index 48045be7..0d9af7c9 100755 --- a/bin/build_dist +++ b/bin/build_dist @@ -52,6 +52,7 @@ ZIP="${DIST_BASE}/bubble-${VERSION}.zip" mkdir -p "${DIST}" || die "Error creating distribution directory: ${DIST}" cp "${JAR}" "${DIST}/bubble.jar" || die "Error copying ${JAR} to ${DIST}/bubble.jar" cp "${BASE}/README.md" "${DIST}/README.md" || die "Error copying README.md to ${DIST}/README.md" +cp "${BASE}/LICENSE.md" "${DIST}/LICENSE.md" || die "Error copying LICENSE.md to ${DIST}/LICENSE.md" cp -R "${BASE}/docs" "${DIST}" || die "Error copying docs directory to ${DIST}" cp -R "${BASE}/bin" "${DIST}" || die "Error copying bin directory to ${DIST}" cp -R "${BASE}/config" "${DIST}" || die "Error copying config directory to ${DIST}"