Skip to content

Commit

Permalink
Fix path error in Mac OS dmg building. See #40
Browse files Browse the repository at this point in the history
  • Loading branch information
Eloston committed Sep 22, 2016
1 parent 4fa0a8a commit 4e6e42e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildlib/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def generate_package(self):
"--verbosity", "2",
"--volname", "Chromium", # From chrome/app/theme/chromium/BRANDING
"--tempdir", tmpdirname,
"--copy", str(self._sandbox_dir / self.build_output /
"--copy", str(self._sandbox_dir.relative_to(self.build_dir) / self.build_output /
"Chromium.app") + ":/Chromium.app",
"--symlink", "/Applications:/Drag to here to install"
]
Expand Down

0 comments on commit 4e6e42e

Please sign in to comment.