From 7b1c9aff734cdaaf38e52125637dff5fe7a97238 Mon Sep 17 00:00:00 2001
From: Randal Stevens <25543498+RandyStevens@users.noreply.github.com>
Date: Fri, 17 May 2019 09:17:54 -0700
Subject: [PATCH] Feature/DMG (#162)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Thanks @RandyStevens 🙏

Closes #139
---
 .travis.yml   | 2 ++
 README.md     | 2 +-
 build.sh      | 1 +
 create_dmg.sh | 8 ++++++++
 4 files changed, 12 insertions(+), 1 deletion(-)
 create mode 100644 create_dmg.sh

diff --git a/.travis.yml b/.travis.yml
index 42b1066..812ebbc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,6 +29,7 @@ script:
 before_deploy:
   - ./sign_mac_app.sh
   - ./create_zip.sh
+  - ./create_dmg.sh
   - ./sum.sh
 
 deploy:
@@ -42,6 +43,7 @@ deploy:
     - ./*.sha256
     - ./*.zip
     - ./*.tar.gz
+    - ./*.dmg
     - vscode/.build/linux/deb/i386/deb/*.deb
     - vscode/.build/linux/rpm/i386/*.rpm
     - vscode/.build/linux/deb/amd64/deb/*.deb
diff --git a/README.md b/README.md
index 3368490..fc051f6 100644
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ For more information on getting all the telemetry disabled and tips for migratin
 Please note that some Visual Studio Code extensions have licenses that restrict their use to the official Visual Studio Code builds and therefore do not work with VSCodium. See [this note](https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-debugging-tools) on the Docs page for what's been found so far and possible workarounds.
 
 ## <a id="supported-os"></a>Supported OS
-- [x] OSX x64 (zipped app file)
+- [x] OSX x64 (zip, dmg)
 - [x] Linux x64 (`.deb`, `.rpm`, `AppImage`, and `.tar.gz` files)
 - [x] Linux x86 (`.deb`, `.rpm`, and `.tar.gz` files)
 - [x] Windows x64
diff --git a/build.sh b/build.sh
index 11deaf5..980427f 100755
--- a/build.sh
+++ b/build.sh
@@ -45,6 +45,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
   fi
 
   if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+    npm install --global create-dmg
     npm run gulp -- "vscode-darwin-min"
   elif [[ "$CI_WINDOWS" == "True" ]]; then
     cp LICENSE.txt LICENSE.rtf # windows build expects rtf license
diff --git a/create_dmg.sh b/create_dmg.sh
new file mode 100644
index 0000000..3a488cd
--- /dev/null
+++ b/create_dmg.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+if [[ "$SHOULD_BUILD" == "yes" ]]; then
+  if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+    cd VSCode-darwin
+    create-dmg VSCodium.app ..
+  fi
+  cd ..
+fi