Skip to content

Commit

Permalink
Merge pull request #1697 from Icenium/kerezov/gravedigger
Browse files Browse the repository at this point in the history
Add discontinuation message
  • Loading branch information
Mitko-Kerezov authored Nov 10, 2017
2 parents fa71ec8 + 5905e49 commit 6f5cc8c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
<h1 style="padding: 8px; background-color: #f1c40f; color: #34495e; font-weight: bold;">Progress will discontinue Telerik Platform on May 10th, 2018. <a id="qwdq" style="border: 1px solid #34495e; padding: 3px 8px; margin-left: 10px" href="https://www.telerik.com/platform-next-level">Learn more</a></h1><br/><br/><br/>


Command-Line Interface for Progress Telerik AppBuilder
===========

Expand All @@ -23,10 +26,10 @@ The AppBuilder CLI lets you build, test, deploy, and publish cross-platform hybr
Installation
===

Latest version: AppBuilder 3.7.6
<br/>Release date: Oct 02, 2017
Latest version: AppBuilder 3.7.7
<br/>Release date: Nov 10, 2017

> AppBuilder 3.7.6 is an update release. For a complete list of the improvements and updates available in this release, see <a href="http://docs.telerik.com/platform/appbuilder/release-notes/v3-7-5" target="_blank">AppBuilder 3.7.6 Release Notes</a>.<br/>For a complete list of the improvements and updates available in the earlier major release, see <a href="http://docs.telerik.com/platform/appbuilder/release-notes/v3-7" target="_blank">AppBuilder 3.7 Release Notes</a>.
> AppBuilder 3.7.7 is an update release. For a complete list of the improvements and updates available in this release, see <a href="http://docs.telerik.com/platform/appbuilder/release-notes/v3-7-5" target="_blank">AppBuilder 3.7.7 Release Notes</a>.<br/>For a complete list of the improvements and updates available in the earlier major release, see <a href="http://docs.telerik.com/platform/appbuilder/release-notes/v3-7" target="_blank">AppBuilder 3.7 Release Notes</a>.
### System Requirements

Expand Down
7 changes: 6 additions & 1 deletion lib/commands/cloud-projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,12 @@ export class ExportCommand extends CloudExportProjectsCommand implements IComman
this.$fs.ensureDirectoryExists(dirname(downloadPath));
} else {
this.$fs.ensureDirectoryExists(downloadPath);
downloadPath = join(downloadPath, buildItem.Filename);
let resultFileName = buildItem.Filename;
if (extname(resultFileName) === "") {
resultFileName += ".zip";
}

downloadPath = join(downloadPath, resultFileName);
}
}

Expand Down
2 changes: 1 addition & 1 deletion lib/common
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "appbuilder",
"preferGlobal": true,
"version": "3.7.6",
"version": "3.7.7",
"author": "Telerik <[email protected]>",
"description": "command line interface to Telerik AppBuilder",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion test/cloud-projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function createTestInjector(promptSlnName?: string, promptPrjName?: string, isIn
return testInjector;
}

describe.only("cloud project commands", () => {
describe("cloud project commands", () => {
after(() => {
helpers.isInteractive = originalIsInteractiveMethod;
});
Expand Down

0 comments on commit 6f5cc8c

Please sign in to comment.