Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Remove Dynamips version in filename for Mac OS X.
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jul 7, 2014
1 parent a110f9e commit b6e1fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GNS3/Config/Defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
DYNAMIPS_DEFAULT_PATH = unicode('dynamips.exe')
elif sys.platform.startswith('darwin'):
if hasattr(sys, "frozen"):
DYNAMIPS_DEFAULT_PATH = os.getcwdu() + os.sep + '../Resources/dynamips-0.2.10-OSX.intel64.bin'
DYNAMIPS_DEFAULT_PATH = os.getcwdu() + os.sep + '../Resources/dynamips'
else:
DYNAMIPS_DEFAULT_PATH = os.getcwdu() + os.sep + 'dynamips-0.2.10-OSX.intel64.bin'
DYNAMIPS_DEFAULT_PATH = os.getcwdu() + os.sep + 'dynamips'
else:
DYNAMIPS_DEFAULT_PATH = unicode('dynamips')

Expand Down

0 comments on commit b6e1fed

Please sign in to comment.