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

Implement Brackets Portable Build on Mac and Windows #333

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing merge from master on Mac
bchintx committed Sep 20, 2013
commit 92c9415e86de1db885216cbf746fba9d544ce7fc
4 changes: 2 additions & 2 deletions appshell/client_app_mac.mm
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@

// check if this is a portable installation
// which is marked by the existence of a file named "makePortable" in the same folder as .app.
bool ClientApp::CheckIfPortableInstall()
bool ClientApp::IsPortableInstall()
{
std::string filename = ClientApp::AppGetAppDirectory();
filename += "/makePortable";
@@ -111,7 +111,7 @@

CefString ClientApp::AppGetSupportDirectory()
{
if (!CheckIfPortableInstall())
if (!IsPortableInstall())
{
// for normal installations, use the Library folder
NSString *libraryDirectory = [NSSearchPathForDirectoriesInDomains(NSApplicationSupportDirectory, NSUserDomainMask, YES) objectAtIndex:0];